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

22 lines
621 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";
2018-07-22 11:15:08 +01:00
version = "0.9.2";
2017-08-11 17:33:53 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2018-07-22 11:15:08 +01:00
sha256 = "7b38c2487602c423ac402214c3b3fa6bbe22b294e2f9e5f9f3842182e1541599";
2017-08-11 17:33:53 +01:00
};
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 ];
};
}