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

29 lines
561 B
Nix
Raw Normal View History

2019-02-24 15:26:24 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, flake8
, nose
}:
buildPythonPackage rec {
pname = "param";
2020-04-24 09:32:29 +00:00
version = "1.9.3";
2019-02-24 15:26:24 +00:00
src = fetchPypi {
inherit pname version;
2020-04-24 09:32:29 +00:00
sha256 = "10crjlsn5vx03xwlnhga9faqq2rlw0qwabi45vnvhmz22qbd8w43";
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";
2019-02-24 15:26:24 +00:00
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}