1{ lib
2, buildPythonPackage
3, fetchPypi
4, numpy
5, isPy3k
6}:
7
8buildPythonPackage rec {
9 version = "0.8.3";
10 pname = "simpleai";
11 disabled = isPy3k;
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "1d5be7a00f1f42ed86683019262acbb14e6eca1ed92ce7d7fdf932838d3742e5";
16 };
17
18 propagatedBuildInputs = [ numpy ];
19
20 #No tests in archive
21 doCheck = false;
22
23 meta = with 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}