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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
# build-system
, setuptools
# optional-dependencies
, lxml
, matplotlib
, numpy
, pandas
, pydot
, pygraphviz
, scipy
, sympy
# tests
, pytest-xdist
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "networkx";
# upgrade may break sage, please test the sage build or ping @timokau on upgrade
version = "3.3";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-DBJ9iy9IZfWa6cuKr81gtccPMkHr1m997618SrkBJsk=";
};
nativeBuildInputs = [
setuptools
];
passthru.optional-dependencies = {
default = [
numpy
scipy
matplotlib
pandas
];
extra = [
lxml
pygraphviz
pydot
sympy
];
};
nativeCheckInputs = [
pytest-xdist
pytestCheckHook
];
disabledTests = [
# No warnings of type (<class 'DeprecationWarning'>, <class 'PendingDeprecationWarning'>, <class 'FutureWarning'>) were emitted.
"test_connected_raise"
];
meta = {
changelog = "https://github.com/networkx/networkx/blob/networkx-${version}/doc/release/release_${version}.rst";
homepage = "https://networkx.github.io/";
downloadPage = "https://github.com/networkx/networkx";
description = "Library for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks";
license = lib.licenses.bsd3;
};
}
|