python3Packages.toposort: 1.6 -> 1.7

This commit is contained in:
Fabian Affolter 2021-10-03 20:55:48 +02:00
parent 6aae893f3d
commit 52be208f20

View File

@ -5,19 +5,23 @@
buildPythonPackage rec {
pname = "toposort";
version = "1.6";
version = "1.7";
format = "pyproject";
src = fetchPypi {
inherit pname version;
sha256 = "a7428f56ef844f5055bb9e9e44b343983773ae6dce0fe5b101e08e27ffbd50ac";
sha256 = "sha256-3cIYLEKRKkQFEb1/9dPmocq8Osy8Z0oyWMjEHL+7ISU=";
};
pythonImportsCheck = [
"toposort"
];
meta = with lib; {
description = "A topological sort algorithm";
homepage = "https://pypi.python.org/pypi/toposort/1.1";
homepage = "https://pypi.python.org/pypi/toposort/";
maintainers = with maintainers; [ tstrobel ];
platforms = platforms.unix;
license = licenses.asl20;
};
}