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

22 lines
621 B
Nix
Raw Normal View History

2017-08-11 16:33:53 +00:00
{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, six, decorator }:
buildPythonPackage rec {
pname = "paramz";
2018-02-26 17:46:29 +00:00
version = "0.9.1";
2017-08-11 16:33:53 +00:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2018-02-26 17:46:29 +00:00
sha256 = "8a5a2fe5cdb033eb869c49e81fde2a9d0055fadb53a8af1665a7f48f320179cf";
2017-08-11 16:33:53 +00:00
};
propagatedBuildInputs = [ numpy scipy six decorator ];
meta = with stdenv.lib; {
description = "Parameterization framework for parameterized model creation and handling";
2017-08-12 03:01:10 +00:00
homepage = https://github.com/sods/paramz;
2017-08-11 16:33:53 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ];
};
}