1{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, six, decorator }: 2 3buildPythonPackage rec { 4 pname = "paramz"; 5 version = "0.9.2"; 6 name = "${pname}-${version}"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "7b38c2487602c423ac402214c3b3fa6bbe22b294e2f9e5f9f3842182e1541599"; 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}