nixpkgs/pkgs/development/python-modules/paramz/default.nix

22 lines
609 B
Nix
Raw Normal View History

2017-08-11 17:33:53 +01:00
{ 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";
2017-08-12 04:01:10 +01:00
homepage = https://github.com/sods/paramz;
2017-08-11 17:33:53 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ];
};
}