From 0d54f987daa30407e127ee9cc1fd4af8b406aef9 Mon Sep 17 00:00:00 2001 From: Ashley Gillman Date: Tue, 16 Jan 2018 13:39:02 +1000 Subject: [PATCH] pythonPackages.nimfa: init at 1.3.1 --- pkgs/top-level/python-packages.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 10705d02d6b..8f8672e4ec8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11343,6 +11343,28 @@ in { nilearn = callPackage ../development/python-modules/nilearn {}; + nimfa = buildPythonPackage rec { + pname = "nimfa"; + version = "1.3.1"; + name = "${pname}-${version}"; + + src = pkgs.fetchurl { + url = "mirror://pypi/n/${pname}/${name}.tar.gz"; + sha256 = "05d0m5n96bg6wj94r7m1har48f93797gk5v9s62zdv7x83a6n6j5"; + }; + + propagatedBuildInputs = with self; [ numpy scipy ]; + buildInputs = with self; [ matplotlib pytest ]; + doCheck = false; # errors + + meta = with pkgs.stdenv.lib; { + description = "Nonnegative matrix factorization library"; + homepage = "http://nimfa.biolab.si"; + license = licenses.bsd3; + maintainers = with maintainers; [ ashgillman ]; + }; + }; + nipy = buildPythonPackage rec { version = "0.4.0"; name = "nipy-${version}";