python3Packages.networkx: 2.7 -> 2.7.1

This commit is contained in:
Martin Weinelt 2022-03-31 01:05:12 +02:00
parent 6d43a144e7
commit de9747ea71

View file

@ -10,11 +10,11 @@
buildPythonPackage rec {
pname = "networkx";
# upgrade may break sage, please test the sage build or ping @timokau on upgrade
version = "2.7";
version = "2.7.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-7/t9nNXDbh4NM/QqOu9brd5QMFNYJqNn1c9gihcK9RU=";
sha256 = "sha256-0RlLp1Pl7tB83s0dI8XNejx3IJm9jb0v6jZniM9N57o=";
};
propagatedBuildInputs = [ decorator setuptools ];