diff options
| author | Chris Ostrouchov <chris.ostrouchov@gmail.com> | 2019-02-24 10:26:24 -0500 |
|---|---|---|
| committer | Chris Ostrouchov <chris.ostrouchov@gmail.com> | 2019-02-24 18:52:42 -0500 |
| commit | 3c3bf6450c5617f005c602d799983df11ea080ef (patch) | |
| tree | 6f29205c3f043e440f0e2bfb7733a1470ce2eed1 /pkgs/development/python-modules/param | |
| parent | 5785c2c5ba91823a379db68519bf910ac5fee6d4 (diff) | |
pythonPackages.param: init at 1.8.2
Diffstat (limited to 'pkgs/development/python-modules/param')
| -rw-r--r-- | pkgs/development/python-modules/param/default.nix | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/param/default.nix b/pkgs/development/python-modules/param/default.nix new file mode 100644 index 000000000000..69a2e61e2690 --- /dev/null +++ b/pkgs/development/python-modules/param/default.nix @@ -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 ]; + }; +} |
