2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2018-10-29 12:30:20 -04:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "toposort";
|
2020-12-22 07:29:26 +00:00
|
|
|
version = "1.6";
|
2018-10-29 12:30:20 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-12-22 07:29:26 +00:00
|
|
|
sha256 = "a7428f56ef844f5055bb9e9e44b343983773ae6dce0fe5b101e08e27ffbd50ac";
|
2018-10-29 12:30:20 -04:00
|
|
|
};
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-10-29 12:30:20 -04:00
|
|
|
description = "A topological sort algorithm";
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "https://pypi.python.org/pypi/toposort/1.1";
|
2018-10-29 12:30:20 -04:00
|
|
|
maintainers = with maintainers; [ tstrobel ];
|
2019-02-17 14:00:33 +01:00
|
|
|
platforms = platforms.unix;
|
2018-10-29 12:30:20 -04:00
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|