Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / param / default.nix
blob8e090561ed063f4b644f3ba10138f396a748992c
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , flake8
5 , nose
6 }:
8 buildPythonPackage rec {
9   pname = "param";
10   version = "1.10.1";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "1f0f1133fbadcd2c5138e579b9934e29fd00f803af01d9bf6f9e6b80ecf1999b";
15   };
17   checkInputs = [ flake8 nose ];
19   # tests not included with pypi release
20   doCheck = false;
22   meta = with lib; {
23     description = "Declarative Python programming using Parameters";
24     homepage = "https://github.com/pyviz/param";
25     license = licenses.bsd3;
26     maintainers = [ maintainers.costrouc ];
27   };