python311Packages.networkx 3.1 -> 3.2.1 https://repology.org/project/python:networkx/versions attrpath: python311Packages.networkx Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/bjw9n5z6mvmz4v8624innhds06ym220g-packages.json.drv building '/nix/store/bjw9n5z6mvmz4v8624innhds06ym220g-packages.json.drv'... Going to be running update for following packages: - python3.11-networkx-3.1 Press Enter key to continue... Running update for: - python3.11-networkx-3.1: UPDATING ... - python3.11-networkx-3.1: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/networkx/default.nix b/pkgs/development/python-modules/networkx/default.nix index 20c73fb6adf8..604106275202 100644 --- a/pkgs/development/python-modules/networkx/default.nix +++ b/pkgs/development/python-modules/networkx/default.nix @@ -11,13 +11,13 @@ buildPythonPackage rec { pname = "networkx"; # upgrade may break sage, please test the sage build or ping @timokau on upgrade - version = "3.1"; + version = "3.2.1"; format = "setuptools"; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-3jRjNUCPhN4Orab/n6+v/5vNoR8KDfqpMRM967FGq2E="; + hash = "sha256-nxu1zzQJvzJOCnIsIL20wg7jm/HDDOiuSZyFArC14MY="; }; propagatedBuildInputs = [ decorator setuptools ]; No auto update branch exists Old version 3.1" not present in staging derivation file with contents: { 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.2.1"; pyproject = true; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; hash = "sha256-nxu1zzQJvzJOCnIsIL20wg7jm/HDDOiuSZyFArC14MY="; }; nativeBuildInputs = [ setuptools ]; passthru.optional-dependencies = { default = [ numpy scipy matplotlib pandas ]; extra = [ lxml pygraphviz pydot sympy ]; }; nativeCheckInputs = [ pytest-xdist pytestCheckHook ]; 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; }; }