My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/deap/default.nix

35 lines
767 B

{ lib, buildPythonPackage, fetchPypi, python, numpy, matplotlib, nose }:
buildPythonPackage rec {
pname = "deap";
version = "1.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "0bvshly83c4h5jhxaa97z192viczymz5fxp6vl8awjmmrs9l9x8i";
};
postPatch = ''
sed -i '/use_2to3=True/d' setup.py
'';
propagatedBuildInputs = [ numpy matplotlib ];
preBuild = ''
2to3 -wn deap
'';
checkInputs = [ nose ];
checkPhase = ''
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 ];
};
}