diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-19 14:37:43 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-20 16:18:48 +0100 |
commit | b98e90050b9ce98c94ddb5b883ba64841df2369b (patch) | |
tree | 1ff74b63581a88222cae7bfd7c7ec595c77c77ba | |
parent | 7d0647fb62924666c74339b95474d5c8e63486dd (diff) |
gnu: Remove python-subunit-bootstrap.
* gnu/packages/check.scm (python-subunit-bootstrap): Delete variable.
Change-Id: If88a19cc0360c8b8c51d2d2cf8a43d2612cacb6b
-rw-r--r-- | gnu/packages/check.scm | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index e34b443b5c..d3ce58ccff 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -2260,30 +2260,6 @@ style tests.") use of resources by test cases.") (license (list license:bsd-3 license:asl2.0)))) ; at the user's option -(define-public python-subunit-bootstrap - (package - (name "python-subunit-bootstrap") - (version "1.4.0") - (source - (origin - (method url-fetch) - (uri (pypi-uri "python-subunit" version)) - (sha256 - (base32 - "0j0ymmnc5nfxi1qzvy59j27viqca7l7xd0y9x29g7yr0h693j804")))) - (build-system python-build-system) - (propagated-inputs - (list python-extras python-testtools-bootstrap)) - (native-inputs - (list python-fixtures-bootstrap python-hypothesis - python-testscenarios-bootstrap)) - (home-page "https://launchpad.net/subunit") - (synopsis "Python implementation of the subunit protocol") - (description - "This package is here for bootstrapping purposes only. Use the regular -python-subunit package instead.") - (license (list license:bsd-3 license:asl2.0)))) ; at the user's option - (define-public python-subunit (package (name "python-subunit") |