nixpkgs/pkgs/development/python-modules/networkx/default.nix
Robert Schütz 1a04744f74 treewide: remove superfluous disabled
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:

    pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
    for f in $(find -name '*.nix'); do
        grep -q "$pattern" "$f" || continue
        sed -i "/$pattern/d" "$f"
        if [ $(grep -c pythonOlder "$f") == 1 ]; then
            sed -i '/^\s*pythonOlder,\s*$/d' "$f"
        fi
        nixfmt "$f"
    done
2026-01-11 09:34:20 -08:00

87 lines
1.8 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
fetchpatch,
# build-system
setuptools,
# optional-dependencies
lxml,
matplotlib,
numpy,
pandas,
pydot,
pygraphviz,
scipy,
sympy,
# tests
pytest-xdist,
pytestCheckHook,
# reverse dependency
sage,
}:
buildPythonPackage rec {
pname = "networkx";
# upgrade may break sage, please test the sage build or ping @timokau on upgrade
version = "3.5";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-1Mb5z4H1LWkjCGZ5a4KvvM3sPbeuT70bZep1D+7VADc=";
};
# backport patch to fix tests with Python 3.13.4
# FIXME: remove in next update
patches = [
(fetchpatch {
url = "https://github.com/networkx/networkx/commit/d85b04a8b9619580d8901f35400414f612c83113.patch";
includes = [ "networkx/generators/lattice.py" ];
hash = "sha256-6y/aJBDgNkUzmQ6o52CGVVzqoQgkCEXA4iAXhv1cS0c=";
})
];
nativeBuildInputs = [ setuptools ];
optional-dependencies = {
default = [
numpy
scipy
matplotlib
pandas
];
extra = [
lxml
pygraphviz
pydot
sympy
];
};
passthru.tests = {
inherit sage;
};
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;
};
}