depot/third_party/nixpkgs/pkgs/development/python-modules/deap/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

27 lines
694 B
Nix

{ lib, buildPythonPackage, fetchPypi, python, numpy, matplotlib, nose }:
buildPythonPackage rec {
pname = "deap";
version = "1.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "0bvshly83c4h5jhxaa97z192viczymz5fxp6vl8awjmmrs9l9x8i";
};
propagatedBuildInputs = [ numpy matplotlib ];
checkInputs = [ nose ];
checkPhase = ''
${python.interpreter} setup.py nosetests --verbosity=3
'';
meta = with lib; {
description = "DEAP is a novel evolutionary computation framework for rapid prototyping and testing of ideas.";
homepage = "https://github.com/DEAP/deap";
license = licenses.lgpl3;
maintainers = with maintainers; [ psyanticy ];
};
}