evcc: 0.131.8 -> 0.131.10 (#364658)
[NixPkgs.git] / pkgs / development / python-modules / hopcroftkarp / default.nix
blobdefbcdeaeb8de42c03341c74cf3cad3ec5640de6
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "hopcroftkarp";
9   version = "1.2.5";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "28a7887db81ad995ccd36a1b5164a4c542b16d2781e8c49334dc9d141968c0e7";
15   };
17   # tests fail due to bad package name
18   doCheck = false;
20   meta = with lib; {
21     description = "Implementation of HopcroftKarp's algorithm";
22     homepage = "https://github.com/sofiat-olaosebikan/hopcroftkarp";
23     license = licenses.gpl3Only;
24     maintainers = [ ];
25   };