mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
pythonPackages.param: init at 1.8.2
This commit is contained in:
parent
5785c2c5ba
commit
3c3bf6450c
2 changed files with 30 additions and 0 deletions
28
pkgs/development/python-modules/param/default.nix
Normal file
28
pkgs/development/python-modules/param/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue