1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "toposort";
8 version = "1.6";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "a7428f56ef844f5055bb9e9e44b343983773ae6dce0fe5b101e08e27ffbd50ac";
13 };
14
15 meta = with lib; {
16 description = "A topological sort algorithm";
17 homepage = "https://pypi.python.org/pypi/toposort/1.1";
18 maintainers = with maintainers; [ tstrobel ];
19 platforms = platforms.unix;
20 license = licenses.asl20;
21 };
22
23}