diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-24 12:36:32 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-04-24 12:41:43 +0100 |
commit | fdf07c14d434e6e2a2742d491fe7d87fe09feadc (patch) | |
tree | b2521d4a47af4439e5594166ec8445ceab9aaeee | |
parent | 76e10bcc5a1bd24352abb43fa276a87857a8eaa5 (diff) | |
download | guix-fdf07c14d434e6e2a2742d491fe7d87fe09feadc.tar.gz guix-fdf07c14d434e6e2a2742d491fe7d87fe09feadc.zip |
gnu: python-hypothesis-next: Withdraw from deprecation.
* gnu/packages/check.scm (python-hypothesis-next): Do not deprecate and
point to the latest version instead.
Change-Id: Ie7224e104c8b1270afa546ffdd3654ca44e2171e
-rw-r--r-- | gnu/packages/check.scm | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 29ed650335..3fe7214645 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm @@ -2831,8 +2831,21 @@ seamlessly into your existing Python unit testing work flow.") (home-page "https://hypothesis.works/") (license license:mpl2.0))) -(define-deprecated python-hypothesis-next python-hypothesis) -(export python-hypothesis-next) +(define-public python-hypothesis-next + (package + (inherit python-hypothesis) + (name "python-hypothesis") + (version "6.131.8") + (source + (origin + (method url-fetch) + (uri (pypi-uri "hypothesis" version)) + (sha256 + (base32 "1wx4ii5dxfp9gajfb5bqd3a2d1a38rbmvb620kj0cvlyvxkv5nk8")))) + (build-system pyproject-build-system) + (native-inputs + (list python-setuptools-next + python-wheel)))) ;; WARNING: This package is a dependency of mesa. (define-public python-lit |