My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/hopcroftkarp/default.nix

24 lines
543 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "hopcroftkarp";
version = "1.2.5";
src = fetchPypi {
inherit pname version;
sha256 = "28a7887db81ad995ccd36a1b5164a4c542b16d2781e8c49334dc9d141968c0e7";
};
# tests fail due to bad package name
doCheck = false;
meta = with lib; {
description = "Implementation of HopcroftKarp's algorithm";
homepage = "https://github.com/sofiat-olaosebikan/hopcroftkarp";
license = licenses.gpl1;
maintainers = [ maintainers.costrouc ];
};
}