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