summary refs log tree commit diff
diff options
context:
space:
mode:
authorJoachim Fasting <joachifm@users.noreply.github.com>2016-05-02 04:56:12 +0200
committerJoachim Fasting <joachifm@users.noreply.github.com>2016-05-02 04:56:12 +0200
commit3ad29e237ad4d3542309592927e7d9d1598d2626 (patch)
tree562945d291b88d1c0a81c77edd58684d9f84f703
parent8a199840065e957e4aea48e655a0958cda9eb7a3 (diff)
parent32394a3cd788e6d4b3f390bd26b6e5ff3021a35d (diff)
downloadnixlib-3ad29e237ad4d3542309592927e7d9d1598d2626.tar
nixlib-3ad29e237ad4d3542309592927e7d9d1598d2626.tar.gz
nixlib-3ad29e237ad4d3542309592927e7d9d1598d2626.tar.bz2
nixlib-3ad29e237ad4d3542309592927e7d9d1598d2626.tar.lz
nixlib-3ad29e237ad4d3542309592927e7d9d1598d2626.tar.xz
nixlib-3ad29e237ad4d3542309592927e7d9d1598d2626.tar.zst
nixlib-3ad29e237ad4d3542309592927e7d9d1598d2626.zip
Merge pull request #14905 from nico202/Oger
Oger: init at 1.1.3 with dependencies
-rw-r--r--pkgs/top-level/python-packages.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index ab45285f1b36..e894773975c5 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -3962,6 +3962,28 @@ in modules // {
     };
   };
 
+  MDP = buildPythonPackage rec {
+    version = "3.5";
+    name = "MDP-${version}";
+
+    src = pkgs.fetchurl {
+      url = "https://pypi.python.org/packages/source/M/MDP/${name}.tar.gz";
+      sha256 = "0aw1zxmyvx6gfmmnixbqmdaah28jl7rmqkzhxv53091asc23iw9k";
+    };
+
+    buildInputs = with self; [ pytest ];
+    propagatedBuildInputs = with self; [ future numpy ];
+
+    doCheck = true;
+
+    meta = {
+      description = "Library for building complex data processing software by combining widely used machine learning algorithms";
+      homepage = http://mdp-toolkit.sourceforge.net;
+      license = licenses.bsd3;
+      maintainers = with maintainers; [ nico202 ];
+    };
+  };
+
   minidb = buildPythonPackage rec {
     name = "minidb-2.0.1";
 
@@ -6839,6 +6861,25 @@ in modules // {
     };
   };
 
+  oger = buildPythonPackage rec {
+    name = "oger-${version}";
+    version = "1.1.3";
+    src = pkgs.fetchurl {
+      url = "http://organic.elis.ugent.be/sites/organic.elis.ugent.be/files/Oger-${version}.tar.gz";
+      sha256 = "1k02ys812lz0x0yymljp102amkm8bvfgqsrphnk235xbcrb0akg5";
+    };
+
+    propagatedBuildInputs = with self; [ MDP scipy numpy matplotlib ];
+
+    meta = {
+      homepage = http://organic.elis.ugent.be/organic/engine;
+      description = "Rapidly build, train, and evalue modular learning architectures";
+      maintainers = with maintainers; [ nico202 ];
+      license = licenses.lgpl3;
+    };
+  };
+		  
+
   pathtools = buildPythonPackage rec {
     name = "pathtools-${version}";
     version = "0.1.2";