Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 590 B view raw
1{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, six, decorator }: 2 3buildPythonPackage rec { 4 pname = "paramz"; 5 version = "0.9.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0917211c0f083f344e7f1bc997e0d713dbc147b6380bc19f606119394f820b9a"; 10 }; 11 12 propagatedBuildInputs = [ numpy scipy six decorator ]; 13 14 meta = with stdenv.lib; { 15 description = "Parameterization framework for parameterized model creation and handling"; 16 homepage = "https://github.com/sods/paramz"; 17 license = licenses.bsd3; 18 maintainers = with maintainers; [ bcdarwin ]; 19 }; 20}