1{ lib
2, buildPythonPackage
3, fetchPypi
4, flake8
5, nose
6}:
7
8buildPythonPackage rec {
9 pname = "param";
10 version = "1.9.3";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "10crjlsn5vx03xwlnhga9faqq2rlw0qwabi45vnvhmz22qbd8w43";
15 };
16
17 checkInputs = [ flake8 nose ];
18
19 # tests not included with pypi release
20 doCheck = false;
21
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 };
28}