about summary refs log tree commit diff
diff options
context:
space:
mode:
authorArun Isaac2025-11-12 21:53:06 +0000
committerArun Isaac2025-11-12 21:53:06 +0000
commitfc0e13275d5d96cc6dd0974582d888156b91734f (patch)
tree7fabd4f76e84222ca26354393009390f632921f6
parentafdc3a9ce460f8e0ff0ddcb95b5d5f3586982661 (diff)
downloadpyhegp-fc0e13275d5d96cc6dd0974582d888156b91734f.tar.gz
pyhegp-fc0e13275d5d96cc6dd0974582d888156b91734f.tar.lz
pyhegp-fc0e13275d5d96cc6dd0974582d888156b91734f.zip
Replace python-hypothesis-next with python-hypothesis.
python-hypothesis has now been updated on Guix upstream, and
python-hypothesis-next has been deprecated.
-rw-r--r--.guix/pyhegp-package.scm12
1 files changed, 2 insertions, 10 deletions
diff --git a/.guix/pyhegp-package.scm b/.guix/pyhegp-package.scm
index 3eb3685..06f8160 100644
--- a/.guix/pyhegp-package.scm
+++ b/.guix/pyhegp-package.scm
@@ -17,8 +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-next))
-  #:use-module ((gnu packages check) #:select (python-pytest) #:prefix guix:)
+  #:use-module ((gnu packages check) #:select (python-hypothesis python-pytest))
   #:use-module ((gnu packages python-build) #:select (python-flit-core))
   #:use-module ((gnu packages python-science) #:select (python-pandas python-scipy))
   #:use-module ((gnu packages python-xyz) #:select (python-click python-numpy))
@@ -29,13 +28,6 @@
   #:use-module (guix packages)
   #:use-module (guix utils))
 
-(define python-pytest
-  (package
-    (inherit guix:python-pytest)
-    (native-inputs
-     (modify-inputs (package-native-inputs guix:python-pytest)
-       (replace "python-hypothesis" python-hypothesis-next)))))
-
 (define-public pyhegp
   (package
     (name "pyhegp")
@@ -73,7 +65,7 @@
            python-scipy))
     (native-inputs
      (list python-flit-core
-           python-hypothesis-next
+           python-hypothesis
            python-pytest))
     (home-page "https://github.com/encryption4genetics/pyhegp")
     (synopsis "Homomorphic encryption of genotypes and phenotypes")