1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5}:
6
7buildPythonPackage rec {
8 pname = "hopcroftkarp";
9 version = "1.2.5";
10 format = "setuptools";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "28a7887db81ad995ccd36a1b5164a4c542b16d2781e8c49334dc9d141968c0e7";
15 };
16
17 # tests fail due to bad package name
18 doCheck = false;
19
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 };
26}