mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.paramz: init at 0.7.4
This commit is contained in:
parent
2b57cb9169
commit
60da71407a
2 changed files with 23 additions and 0 deletions
21
pkgs/development/python-modules/paramz/default.nix
Normal file
21
pkgs/development/python-modules/paramz/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, six, decorator }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "paramz";
|
||||
version = "0.7.4";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1r4mayzp7cb5w1kz45sw65is9j3p60h0yyp8hdhsx393rr4n82nn";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ numpy scipy six decorator ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Parameterization framework for parameterized model creation and handling";
|
||||
homepage = https://github.com/sodz/paramz;
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ bcdarwin ];
|
||||
};
|
||||
}
|
|
@ -16463,6 +16463,8 @@ in {
|
|||
};
|
||||
};
|
||||
|
||||
paramz = callPackage ../development/python-modules/paramz { };
|
||||
|
||||
parsel = buildPythonPackage rec {
|
||||
name = "parsel-${version}";
|
||||
version = "1.1.0";
|
||||
|
|
Loading…
Reference in a new issue