1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "hopcroftkarp";
8 version = "1.2.4";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "cc6fc7ad348bbe5c9451f8116845c46ae26290c92b2dd14690aae2d55ba5e3a6";
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}