blob: d8a195f5f7243f657573e279fbee38935c5629a0 (
plain) (
blame)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{
lib,
buildPythonPackage,
fetchPypi,
isPy27,
cookiecutter,
networkx,
pandas,
tornado,
tqdm,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "mesa";
version = "2.3.0";
format = "setuptools";
# According to their docs, this library is for Python 3+.
disabled = isPy27;
src = fetchPypi {
pname = "mesa";
inherit version;
hash = "sha256-wXHCyUk05Ez4ye5a1rKXCyKPZMK7bR7xZ5rpD5mEaUw=";
};
propagatedBuildInputs = [
cookiecutter
networkx
pandas
tornado
tqdm
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
"test_examples"
"test_run"
"test_scaffold_creates_project_dir"
];
meta = with lib; {
homepage = "https://github.com/projectmesa/mesa";
description = "Agent-based modeling (or ABM) framework in Python";
license = licenses.asl20;
maintainers = [ maintainers.dpaetzel ];
broken = true; # missing dependencies
};
}
|