1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "hopcroftkarp";
8 version = "1.2.5";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "28a7887db81ad995ccd36a1b5164a4c542b16d2781e8c49334dc9d141968c0e7";
13 };
14
15 # tests fail due to bad package name
16 doCheck = false;
17
18 meta = with lib; {
19 description = "Implementation of HopcroftKarp's algorithm";
20 homepage = "https://github.com/sofiat-olaosebikan/hopcroftkarp";
21 license = licenses.gpl1;
22 maintainers = [ maintainers.costrouc ];
23 };
24}