1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 matplotlib,
6 numpy,
7 pytestCheckHook,
8}:
9
10buildPythonPackage rec {
11 pname = "deap";
12 version = "1.4.3";
13 format = "setuptools";
14
15 src = fetchPypi {
16 inherit pname version;
17 hash = "sha256-fJcIj7BYNb3CVb7EdcsOd43itD5Ey++/K81lWu7IZf0=";
18 };
19
20 propagatedBuildInputs = [
21 matplotlib
22 numpy
23 ];
24 nativeCheckInputs = [ pytestCheckHook ];
25
26 meta = with lib; {
27 description = "Novel evolutionary computation framework for rapid prototyping and testing of ideas";
28 homepage = "https://github.com/DEAP/deap";
29 license = licenses.lgpl3Plus;
30 maintainers = with maintainers; [
31 getpsyched
32 psyanticy
33 ];
34 };
35}