1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, numpy
5, isPy3k
6}:
7
8buildPythonPackage rec {
9 version = "0.8.2";
10 pname = "simpleai";
11 disabled = isPy3k;
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "2927d460b09ff6dd177999c2f48f3275c84c956efe5b41b567b5316e2259d21e";
16 };
17
18 propagatedBuildInputs = [ numpy ];
19
20 #No tests in archive
21 doCheck = false;
22
23 meta = with stdenv.lib; {
24 homepage = "https://github.com/simpleai-team/simpleai";
25 description = "This lib implements many of the artificial intelligence algorithms described on the book 'Artificial Intelligence, a Modern Approach'";
26 maintainers = with maintainers; [ NikolaMandic ];
27 };
28
29}