diff options
author | Arun Isaac | 2025-07-14 15:40:25 +0100 |
---|---|---|
committer | Arun Isaac | 2025-07-17 01:47:39 +0100 |
commit | 2829c4311d0c21d983621ce8b2c5565ddbc5dbf4 (patch) | |
tree | c926d5e924ccc7ce9715c78842920c4c0568754a /.guix/pyhegp-package.scm | |
parent | e592d269b774d2e70f3bc959cbe41aa1e3f03d10 (diff) | |
download | pyhegp-2829c4311d0c21d983621ce8b2c5565ddbc5dbf4.tar.gz pyhegp-2829c4311d0c21d983621ce8b2c5565ddbc5dbf4.tar.lz pyhegp-2829c4311d0c21d983621ce8b2c5565ddbc5dbf4.zip |
Use python-hypothesis-next.
* guix.scm: Import python-hypothesis-next instead of
python-hypothesis.
(python-pyhegp)[native-inputs]: Replace python-hypothesis with
python-hypothesis-next.
Diffstat (limited to '.guix/pyhegp-package.scm')
-rw-r--r-- | .guix/pyhegp-package.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.guix/pyhegp-package.scm b/.guix/pyhegp-package.scm index 7d3cfad..ced8637 100644 --- a/.guix/pyhegp-package.scm +++ b/.guix/pyhegp-package.scm @@ -17,7 +17,7 @@ ;;; along with pyhegp. If not, see <https://www.gnu.org/licenses/>. (define-module (pyhegp-package) - #:use-module ((gnu packages check) #:select (python-hypothesis python-pytest)) + #:use-module ((gnu packages check) #:select (python-hypothesis-next python-pytest)) #:use-module ((gnu packages python-build) #:select (python-flit-core)) #:use-module ((gnu packages python-science) #:select (python-scipy)) #:use-module ((gnu packages python-xyz) #:select (python-click python-numpy)) @@ -40,7 +40,7 @@ (build-system pyproject-build-system) (native-inputs (list python-flit-core - python-hypothesis + python-hypothesis-next python-pytest)) (propagated-inputs (list python-click |