Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / toposort / default.nix
blob540835c7e3100062717ce21ebd53f16e4bb9f8f3
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "toposort";
8   version = "1.6";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "a7428f56ef844f5055bb9e9e44b343983773ae6dce0fe5b101e08e27ffbd50ac";
13   };
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   };