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