Merge pull request #14912 from NikolaMandic/add_simpleai

simpleai: init at 0.7.11

+24
+24
pkgs/top-level/python-packages.nix
··· 27383 license = licenses.asl20; 27384 }; 27385 }; 27386 }
··· 27383 license = licenses.asl20; 27384 }; 27385 }; 27386 + 27387 + simpleai = buildPythonPackage rec { 27388 + version = "0.7.11"; 27389 + name = "simpleai-${version}"; 27390 + 27391 + src = pkgs.fetchurl { 27392 + url= "https://pypi.python.org/packages/source/s/simpleai/${name}.tar.gz"; 27393 + sha256 = "03frjc5jxsz9xm24jz7qa4hcp0dicgazrxkdsa2rsnir672lwkwz"; 27394 + }; 27395 + 27396 + propagatedBuildInputs = with self; [ numpy ]; 27397 + 27398 + disabled = isPy3k; 27399 + 27400 + #No tests in archive 27401 + doCheck = false; 27402 + 27403 + meta = { 27404 + homepage = https://github.com/simpleai-team/simpleai; 27405 + description = "This lib implements many of the artificial intelligence algorithms described on the book 'Artificial Intelligence, a Modern Approach'"; 27406 + maintainers = with maintainers; [ NikolaMandic ]; 27407 + }; 27408 + }; 27409 + 27410 }