1{ lib
2, buildPythonPackage
3, fetchPypi
4, flake8
5, nose
6}:
7
8buildPythonPackage rec {
9 pname = "param";
10 version = "1.10.1";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "1f0f1133fbadcd2c5138e579b9934e29fd00f803af01d9bf6f9e6b80ecf1999b";
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}