8 buildPythonPackage rec {
9 pname = "graphlib-backport";
14 src = fetchFromGitHub {
16 repo = "graphlib_backport";
18 hash = "sha256-ssJLtBQH8sSnccgcAKLKfYpPyw5U0RIm1F66/Er81lo=";
22 substituteInPlace pyproject.toml \
23 --replace 'poetry>=1.0' 'poetry-core' \
24 --replace 'poetry.masonry.api' 'poetry.core.masonry.api'
27 propagatedBuildInputs = [
32 pythonImportsCheck = [ "graphlib" ];
35 description = "Backport of the Python 3.9 graphlib module for Python 3.6+";
36 homepage = "https://github.com/mariushelf/graphlib_backport";
37 license = licenses.psfl;
38 maintainers = with maintainers; [ t4ccer ];