pythonPackages.paramz: init at 0.7.4

This commit is contained in:
Ben Darwin 2017-08-11 12:33:53 -04:00 committed by Ben Darwin
parent 2b57cb9169
commit 60da71407a
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, six, decorator }:
buildPythonPackage rec {
pname = "paramz";
version = "0.7.4";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1r4mayzp7cb5w1kz45sw65is9j3p60h0yyp8hdhsx393rr4n82nn";
};
propagatedBuildInputs = [ numpy scipy six decorator ];
meta = with stdenv.lib; {
description = "Parameterization framework for parameterized model creation and handling";
homepage = https://github.com/sodz/paramz;
license = licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ];
};
}

View file

@ -16463,6 +16463,8 @@ in {
};
};
paramz = callPackage ../development/python-modules/paramz { };
parsel = buildPythonPackage rec {
name = "parsel-${version}";
version = "1.1.0";