1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add python-stevedore-bootstrap.

* gnu/packages/openstack.scm (python-stevedore-bootstrap): New variable.

Change-Id: I3bde56d308b90bfa7a6509e4fd05c940aecd812f
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves
2025-07-24 03:58:42 +02:00
committed by Sharlatan Hellseher
parent f1abe31677
commit 8fe6eddc84

View File

@@ -388,6 +388,19 @@ classes for implementing common patterns for using dynamically loaded
extensions.")
(license asl2.0)))
(define-public python-stevedore-bootstrap
(hidden-package
(package/inherit python-stevedore
(arguments
(substitute-keyword-arguments (package-arguments python-stevedore)
((#:tests? t? #t)
#f)
((#:phases phases #~%standard-phases)
#~(modify-phases #$phases
(delete 'sanity-check)))))
(native-inputs
(list python-setuptools python-wheel)))))
(define-public python-tempest
(package
(name "python-tempest")