nixpkgs/pkgs/development/python-modules/deap/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

28 lines
658 B
Nix

{ lib, buildPythonPackage, fetchPypi, numpy, matplotlib, nose }:
buildPythonPackage rec {
pname = "deap";
version = "1.3.3";
src = fetchPypi {
inherit pname version;
hash = "sha256-h3LxsP/wQtXlFrCuusLHBiQwRap9DejguGWPOAGBzzE=";
};
propagatedBuildInputs = [ numpy matplotlib ];
nativeCheckInputs = [ 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 ];
};
}