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-10-06 10:56:19 +00:00
version = "0.9.4";
2017-08-11 16:33:53 +00:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2018-10-06 10:56:19 +00:00
sha256 = "179ca77a965e6e724217257793e3c8c022285ea2190a85e0826ac98dea316219";
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 ];
};
}