3
0
Fork 0
forked from mirrors/nixpkgs

simpleai: init at 0.7.11

This commit is contained in:
NikolaMandic 2016-05-20 21:10:07 +00:00
parent 25f07b12cf
commit 3f481abc63

View file

@ -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 ];
};
};
}