python3Packages.graphlib-backport: init at 1.1.0

This commit is contained in:
t4ccer 2024-02-24 14:37:22 -07:00
parent 3851be87bc
commit 5e1d995fdc
No known key found for this signature in database
GPG Key ID: 19E5A2D8B1E43F19
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ lib
, fetchFromGitHub
, buildPythonPackage
, setuptools
, poetry-core
}:
buildPythonPackage rec {
pname = "graphlib-backport";
version = "1.1.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "mariushelf";
repo = "graphlib_backport";
rev = version;
hash = "sha256-ssJLtBQH8sSnccgcAKLKfYpPyw5U0RIm1F66/Er81lo=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'poetry>=1.0' 'poetry-core' \
--replace 'poetry.masonry.api' 'poetry.core.masonry.api'
'';
propagatedBuildInputs = [
setuptools
poetry-core
];
pythonImportsCheck = [ "graphlib" ];
meta = with lib; {
description = "Backport of the Python 3.9 graphlib module for Python 3.6+";
homepage = "https://github.com/mariushelf/graphlib_backport";
license = licenses.psfl;
maintainers = with maintainers; [ t4ccer ];
};
}

View File

@ -4949,6 +4949,8 @@ self: super: with self; {
graphene-django = callPackage ../development/python-modules/graphene-django { };
graphlib-backport = callPackage ../development/python-modules/graphlib-backport { };
graphqlclient= callPackage ../development/python-modules/graphqlclient { };
graphql-core = callPackage ../development/python-modules/graphql-core { };