diff options
| -rw-r--r-- | .guix/pyhegp-package.scm | 12 |
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") |
