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