pythonPackages.param: init at 1.8.2

This commit is contained in:
Chris Ostrouchov 2019-02-24 10:26:24 -05:00
parent 5785c2c5ba
commit 3c3bf6450c
No known key found for this signature in database
GPG key ID: 9ED59B0AB1EAF573
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, flake8
, nose
}:
buildPythonPackage rec {
pname = "param";
version = "1.8.2";
src = fetchPypi {
inherit pname version;
sha256 = "49927979d4f6c994bcd8f6f7f2b34e3a0a7f0d62404dca6bcae5acde0192bb01";
};
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 ];
};
}

View file

@ -3474,6 +3474,8 @@ in {
parsedatetime = callPackage ../development/python-modules/parsedatetime { };
param = callPackage ../development/python-modules/param { };
paramiko = callPackage ../development/python-modules/paramiko { };
parameterized = callPackage ../development/python-modules/parameterized { };