1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "toposort";
8 version = "1.5";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "dba5ae845296e3bf37b042c640870ffebcdeb8cd4df45adaa01d8c5476c557dd";
13 };
14
15 meta = with stdenv.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}