From 3f481abc63f1be31ca8a00da532e8818d36562a4 Mon Sep 17 00:00:00 2001 From: NikolaMandic Date: Fri, 20 May 2016 21:10:07 +0000 Subject: simpleai: init at 0.7.11 --- pkgs/top-level/python-packages.nix | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'pkgs') diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 07f20189253d..0d0642331bb0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -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 ]; + }; + }; + } -- cgit 1.4.1