about summary refs log tree commit diff
path: root/pkgs/development/python-modules/toposort/default.nix
blob: 67b946b352f783334e3e1aa3dd8b0becc8764cc5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "toposort";
  version = "1.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1izmirbwmd9xrk7rq83p486cvnsslfa5ljvl7rijj1r64zkcnf3a";
  };

  meta = with stdenv.lib; {
    description = "A topological sort algorithm";
    homepage = https://pypi.python.org/pypi/toposort/1.1;
    maintainers = with maintainers; [ tstrobel ];
    platforms = platforms.linux;
    license = licenses.asl20;
  };

}