1{ lib
2, buildPythonPackage
3, fetchPypi
4, matplotlib
5, numpy
6, pytestCheckHook
7}:
8
9buildPythonPackage rec {
10 pname = "deap";
11 version = "1.4.1";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-zAHemJLfp9G8mAPasoiS/q0XfwGCyB20c2CiQOrXeP8=";
16 };
17
18 propagatedBuildInputs = [ matplotlib numpy ];
19 nativeCheckInputs = [ pytestCheckHook ];
20
21 meta = with lib; {
22 description = "A novel evolutionary computation framework for rapid prototyping and testing of ideas";
23 homepage = "https://github.com/DEAP/deap";
24 license = licenses.lgpl3Plus;
25 maintainers = with maintainers; [ getpsyched psyanticy ];
26 };
27}