nixpkgs/pkgs/development/python-modules/param/default.nix

29 lines
571 B
Nix
Raw Normal View History

2019-02-24 15:26:24 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, flake8
, nose
}:
buildPythonPackage rec {
pname = "param";
2019-10-16 09:43:10 +00:00
version = "1.9.2";
2019-02-24 15:26:24 +00:00
src = fetchPypi {
inherit pname version;
2019-10-16 09:43:10 +00:00
sha256 = "a2dcb07c6a4ff48bade69bb5d30d84a96911a7e9dcb76b6de975453f933332f8";
2019-02-24 15:26:24 +00:00
};
checkInputs = [ flake8 nose ];
# tests not included with pypi release
doCheck = false;
meta = with lib; {
description = "Declarative Python programming using Parameters";
homepage = https://github.com/pyviz/param;
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}