Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / hopcroftkarp / default.nix
blob9386bdd861fc24068f9cb907d0f9f27cfdd861d5
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "hopcroftkarp";
8   version = "1.2.5";
9   format = "setuptools";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "28a7887db81ad995ccd36a1b5164a4c542b16d2781e8c49334dc9d141968c0e7";
14   };
16   # tests fail due to bad package name
17   doCheck = false;
19   meta = with lib; {
20     description = "Implementation of HopcroftKarp's algorithm";
21     homepage = "https://github.com/sofiat-olaosebikan/hopcroftkarp";
22     license = licenses.gpl3Only;
23     maintainers = [ ];
24   };