diff options
-rw-r--r-- | gn/packages/bioinformatics.scm | 11 | ||||
-rw-r--r-- | gn/packages/python.scm | 23 |
2 files changed, 23 insertions, 11 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm index 3cd1e1c..b58d97e 100644 --- a/gn/packages/bioinformatics.scm +++ b/gn/packages/bioinformatics.scm @@ -1791,17 +1791,6 @@ reads, also called read-based phasing or haplotype assembly. It is especially suitable for long reads, but works also well with short reads.") (license license:expat))) -(define-public python-pytest-runner-2 - (package - (inherit python-pytest-runner) - (version "2.12.2") - (source (origin - (method url-fetch) - (uri (pypi-uri "pytest-runner" version)) - (sha256 - (base32 - "11ivjj9hfphkv4yfb2g74av4yy86y8gcbf7gbif0p1hcdfnxg3w6")))))) - (define-public bh20-seq-resource (let ((commit "ae4cb3c2cf7103bbc84f52618bb755d7ce25775b") (revision "3")) diff --git a/gn/packages/python.scm b/gn/packages/python.scm index f3fa50b..169fac7 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -1324,6 +1324,29 @@ sorted order.") ("python-requests" ,python-requests) ,@(package-native-inputs python-pytest))))) +(define-public python-pytest-runner-4 + (package + (inherit python-pytest-runner) + (name "python-pytest-runner") + (version "4.5.1") + (source (origin + (method url-fetch) + (uri (pypi-uri "pytest-runner" version)) + (sha256 + (base32 + "1vzilbayx5mznsdm1r258m3616374p6kvhsbj4j6238j9djkvjyi")))))) + +(define-public python-pytest-runner-2 + (package + (inherit python-pytest-runner) + (version "2.12.2") + (source (origin + (method url-fetch) + (uri (pypi-uri "pytest-runner" version)) + (sha256 + (base32 + "11ivjj9hfphkv4yfb2g74av4yy86y8gcbf7gbif0p1hcdfnxg3w6")))))) + (define-public python-pandas-plink (package (name "python-pandas-plink") |