nixpkgs/pkgs/development/python-modules/toposort/default.nix
ajs124 45ec5898cb maintainers: remove tstrobel
was ts468 on github afaict and was actually a committer, but that account hasn't been active since early 2018
2022-06-29 00:54:53 +02:00

28 lines
539 B
Nix

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