1{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, six, decorator }:
2
3buildPythonPackage rec {
4 pname = "paramz";
5 version = "0.7.4";
6 name = "${pname}-${version}";
7
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "1r4mayzp7cb5w1kz45sw65is9j3p60h0yyp8hdhsx393rr4n82nn";
11 };
12
13 propagatedBuildInputs = [ numpy scipy six decorator ];
14
15 meta = with stdenv.lib; {
16 description = "Parameterization framework for parameterized model creation and handling";
17 homepage = https://github.com/sods/paramz;
18 license = licenses.bsd3;
19 maintainers = with maintainers; [ bcdarwin ];
20 };
21}