summary refs log tree commit diff
path: root/pkgs/development/python-modules/simpleai/default.nix
blob: 9dbf40a547068829c91aaa9de791acf0e4602398 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, isPy3k
}:

buildPythonPackage rec {
   version = "0.8.3";
   pname = "simpleai";
   disabled = isPy3k;

   src = fetchPypi {
     inherit pname version;
     sha256 = "1d5be7a00f1f42ed86683019262acbb14e6eca1ed92ce7d7fdf932838d3742e5";
   };

   propagatedBuildInputs = [ numpy ];

   #No tests in archive
   doCheck = false;

   meta = with lib; {
     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 ];
   };

}