summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNikolaMandic <mn080202@gmail.com>2016-05-20 21:10:07 +0000
committerNikolaMandic <mn080202@gmail.com>2016-05-23 19:17:04 +0000
commit3f481abc63f1be31ca8a00da532e8818d36562a4 (patch)
treea43bc2f9f482003c297f5639f837d32eaa01ed25 /pkgs
parent25f07b12cf28528350cae467ce50ccdf028bbc27 (diff)
downloadnixlib-3f481abc63f1be31ca8a00da532e8818d36562a4.tar
nixlib-3f481abc63f1be31ca8a00da532e8818d36562a4.tar.gz
nixlib-3f481abc63f1be31ca8a00da532e8818d36562a4.tar.bz2
nixlib-3f481abc63f1be31ca8a00da532e8818d36562a4.tar.lz
nixlib-3f481abc63f1be31ca8a00da532e8818d36562a4.tar.xz
nixlib-3f481abc63f1be31ca8a00da532e8818d36562a4.tar.zst
nixlib-3f481abc63f1be31ca8a00da532e8818d36562a4.zip
simpleai: init at 0.7.11
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/top-level/python-packages.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 07f20189253d..0d0642331bb0 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -27360,4 +27360,28 @@ in modules // {
       license = licenses.asl20;
     };
   };
+
+  simpleai = buildPythonPackage rec {
+     version = "0.7.11";
+     name = "simpleai-${version}";
+
+     src = pkgs.fetchurl {
+       url= "https://pypi.python.org/packages/source/s/simpleai/${name}.tar.gz";
+       sha256 = "03frjc5jxsz9xm24jz7qa4hcp0dicgazrxkdsa2rsnir672lwkwz";
+     };
+
+     propagatedBuildInputs = with self; [ numpy ];
+
+     disabled = isPy3k;
+
+     #No tests in archive
+     doCheck = false;
+
+     meta = {
+       homepage = https://github.com/simpleai-team/simpleai;
+       description = "This lib implements many of the artificial intelligence algorithms described on the book 'Artificial Intelligence, a Modern Approach'";
+       maintainers = with maintainers; [ NikolaMandic ];
+     };
+  };
+
 }