about summary refs log tree commit diff
path: root/pkgs/development/python-modules/simpleai/default.nix
blob: 3d4bdf3968fc78b4fac546974ef12e47a03df8f9 (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
{ stdenv
, buildPythonPackage
, fetchPypi
, numpy
, isPy3k
}:

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

   src = fetchPypi {
     inherit pname version;
     sha256 = "03frjc5jxsz9xm24jz7qa4hcp0dicgazrxkdsa2rsnir672lwkwz";
   };

   propagatedBuildInputs = [ numpy ];

   #No tests in archive
   doCheck = false;

   meta = with stdenv.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 ];
   };

}