Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / deap / default.nix
blob4f0d493c0f80cf58bee9784cb9f3a907144f340d
1 { lib, buildPythonPackage, fetchPypi, numpy, matplotlib, nose }:
3 buildPythonPackage rec {
4   pname = "deap";
5   version = "1.4.1";
7   src = fetchPypi {
8     inherit pname version;
9     hash = "sha256-zAHemJLfp9G8mAPasoiS/q0XfwGCyB20c2CiQOrXeP8=";
10   };
12   propagatedBuildInputs = [ numpy matplotlib ];
14   nativeCheckInputs = [ nose ];
15   checkPhase = ''
16     nosetests --verbosity=3
17   '';
19   meta = with lib; {
20     description = "DEAP is a novel evolutionary computation framework for rapid prototyping and testing of ideas.";
21     homepage = "https://github.com/DEAP/deap";
22     license = licenses.lgpl3;
23     maintainers = with maintainers; [ psyanticy ];
24   };