summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-09-19 15:21:35 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:36:32 +0100
commit89e45153e7cbca451d84745d08d9f3295e71ecde (patch)
treed962a6ab47b6e99bbce7b6ffb7cf117538dfab96 /gnu
parentfc95709fbf12a3cb1dba517c84eaaee1ef98fe3b (diff)
gnu: Remove python-fixtures-bootstrap.
* gnu/packages/check.scm (python-fixtures-bootstrap): Delete variable. Change-Id: I3a3777206aabcac54f78b1e2565632abb19a6f62
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/check.scm30
1 files changed, 0 insertions, 30 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index d3ce58ccffe..2ecb331b9d7 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2312,36 +2312,6 @@ use of resources by test cases.")
protocol.")
(license (list license:bsd-3 license:asl2.0)))) ; at the user's option
-;; Fixtures requires python-pbr at runtime, but pbr uses fixtures for its
-;; own tests. Hence this bootstrap variant.
-(define-public python-fixtures-bootstrap
- (package
- (name "python-fixtures-bootstrap")
- (version "3.0.0")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "fixtures" version))
- (sha256
- (base32
- "1vxj29bzz3rd4pcy51d05wng9q9dh4jq6wx92yklsm7i6h1ddw7w"))
- (patches (search-patches "python-fixtures-remove-monkeypatch-test.patch"))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f
- #:phases
- (modify-phases %standard-phases
- ;; Package is not loadable on its own at this stage.
- (delete 'sanity-check))))
- (propagated-inputs
- (list python-pbr-minimal python-six python-extras))
- (home-page "https://launchpad.net/python-fixtures")
- (synopsis "Python test fixture library")
- (description
- "This package is only used for bootstrapping. Use the regular
-python-fixtures package instead.")
- (license (list license:bsd-3 license:asl2.0)))) ; at user's option
-
(define-public python-fixtures
(package
(name "python-fixtures")