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

21 lines
588 B
Nix
Raw Normal View History

2017-08-11 18:33:53 +02:00
{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, six, decorator }:
buildPythonPackage rec {
pname = "paramz";
2019-05-30 08:49:51 +02:00
version = "0.9.5";
2017-08-11 18:33:53 +02:00
src = fetchPypi {
inherit pname version;
2019-05-30 08:49:51 +02:00
sha256 = "0917211c0f083f344e7f1bc997e0d713dbc147b6380bc19f606119394f820b9a";
2017-08-11 18:33:53 +02:00
};
propagatedBuildInputs = [ numpy scipy six decorator ];
meta = with stdenv.lib; {
description = "Parameterization framework for parameterized model creation and handling";
2017-08-12 05:01:10 +02:00
homepage = https://github.com/sods/paramz;
2017-08-11 18:33:53 +02:00
license = licenses.bsd3;
maintainers = with maintainers; [ bcdarwin ];
};
}