diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-17 23:00:19 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-30 10:30:38 +0100 |
commit | 99b292a6534de895d3e6be09f3b7df74c2c4b565 (patch) | |
tree | 3639b663764d1f7828381d84c72b14be7a104c5b /gnu/packages/python-build.scm | |
parent | 4e92ed625fdeda90f1abc07b7fdd2d5d6f7c83cb (diff) | |
download | guix-99b292a6534de895d3e6be09f3b7df74c2c4b565.tar guix-99b292a6534de895d3e6be09f3b7df74c2c4b565.tar.gz |
gnu: Add python-pluggy-next.
* gnu/packages/python-build.scm (python-pluggy-next): New variable.
Change-Id: If3ec3f930a799df9602db71112a6c6a5272b524c
Diffstat (limited to 'gnu/packages/python-build.scm')
-rw-r--r-- | gnu/packages/python-build.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm index 71f9e5c7da..72da369208 100644 --- a/gnu/packages/python-build.scm +++ b/gnu/packages/python-build.scm @@ -87,6 +87,18 @@ Pytest but stripped of Pytest specific details.") (home-page "https://pypi.org/project/pluggy/") (license license:expat))) +(define-public python-pluggy-next + (package/inherit python-pluggy + (name "python-pluggy") + (version "1.5.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pluggy" version)) + (sha256 + (base32 "1w8c3mpliqm9biqw75ci8cfj1x5pb6g5zwblqp27ijgxjj7aizrc")))) + (build-system pyproject-build-system))) + (define-public python-toml (package (name "python-toml") |