about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/toposort/default.nix
blob: 43df3c4e21e946ff9eccd66725b5caa75fddf370 (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
{ lib, stdenv
, buildPythonPackage
, fetchPypi
}:

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "a7428f56ef844f5055bb9e9e44b343983773ae6dce0fe5b101e08e27ffbd50ac";
  };

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

}