mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
21 lines
590 B
Nix
21 lines
590 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, six, decorator }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "paramz";
|
|
version = "0.9.5";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0917211c0f083f344e7f1bc997e0d713dbc147b6380bc19f606119394f820b9a";
|
|
};
|
|
|
|
propagatedBuildInputs = [ numpy scipy six decorator ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Parameterization framework for parameterized model creation and handling";
|
|
homepage = "https://github.com/sods/paramz";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
}
|