nixpkgs/pkgs/development/python-modules/toposort/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
548 B
Nix
Raw Normal View History

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