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