summaryrefslogtreecommitdiff
path: root/gnu/packages/openstack.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-19 15:46:50 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:33 +0100
commitc7fec22b91877ee339462780a644330898bddcaf (patch)
tree454723354987e541353be3657572f71136cc9298 /gnu/packages/openstack.scm
parent76ba800cf54f20cabcd2bc633fea37a72cf92d6c (diff)
gnu: python-oslotest: Fix build.
* gnu/packages/openstack.scm (python-oslotest)[arguments] <phases>: Add 'remove-sub-package. [native-inputs]: Remove python-coverage and python-wheel. Change-Id: Ibefd7e2bd7d60477931e38ba790fa01dfcae9403
Diffstat (limited to 'gnu/packages/openstack.scm')
-rw-r--r--gnu/packages/openstack.scm21
1 files changed, 15 insertions, 6 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm
index 85a5a5ab205..9a1c26feb1a 100644
--- a/gnu/packages/openstack.scm
+++ b/gnu/packages/openstack.scm
@@ -911,15 +911,24 @@ documentation from the OpenStack project.")
911 (sha256 911 (sha256
912 (base32 "1vp85v81p2vx66j973hc7fa65shp0ilhaypyyny01jwcip94152s")))) 912 (base32 "1vp85v81p2vx66j973hc7fa65shp0ilhaypyyny01jwcip94152s"))))
913 (build-system pyproject-build-system) 913 (build-system pyproject-build-system)
914 (propagated-inputs 914 (arguments
915 (list python-fixtures python-subunit python-testtools)) 915 (list
916 #:phases
917 #~(modify-phases %standard-phases
918 (add-after 'unpack 'remove-sub-package
919 ;; error: Multiple top-level packages discovered in a flat-layout:
920 ;; ['oslotest', 'releasenotes'].
921 (lambda _
922 (delete-file-recursively "releasenotes"))))))
916 (native-inputs 923 (native-inputs
917 (list python-coverage 924 (list python-debtcollector
918 python-debtcollector
919 python-oslo-config 925 python-oslo-config
920 python-stestr 926 python-stestr
921 python-setuptools 927 python-setuptools))
922 python-wheel)) 928 (propagated-inputs
929 (list python-fixtures
930 python-subunit
931 python-testtools))
923 (home-page "https://launchpad.net/oslo") 932 (home-page "https://launchpad.net/oslo")
924 (synopsis "Oslo test framework") 933 (synopsis "Oslo test framework")
925 (description "The Oslo Test framework provides common fixtures, support 934 (description "The Oslo Test framework provides common fixtures, support