gnu: Add python-oslotest-bootstrap.

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

Change-Id: Iacd0fcc04710f7d7cbead4a301fab31ff30ae16f
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Nicolas Graves 2025-07-24 04:18:53 +02:00 committed by Sharlatan Hellseher
parent 00fe56ebef
commit 5383621f76
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -928,6 +928,19 @@ documentation from the OpenStack project.")
for debugging, and better support for mocking results.")
(license asl2.0)))
(define-public python-oslotest-bootstrap
(hidden-package
(package/inherit python-oslotest
(arguments
(substitute-keyword-arguments (package-arguments python-oslotest)
((#:tests? t? #t)
#f)
((#:phases phases #~%standard-phases)
#~(modify-phases #$phases
(delete 'sanity-check)))))
(native-inputs
(list python-setuptools python-wheel)))))
(define-public python-oslo-utils
(package
(name "python-oslo-utils")