diff options
author | BonfaceKilz | 2020-10-08 22:42:45 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-10-08 22:42:45 +0300 |
commit | d9a7055abbb3e88bb0d0753a030bebb31b97cc58 (patch) | |
tree | d0900bbd6a85d2218220be7471eae09c142a408d /gn | |
parent | a542d0f7213be1a54d509b59cb8bd857f1a7a80d (diff) | |
download | guix-bioinformatics-d9a7055abbb3e88bb0d0753a030bebb31b97cc58.tar.gz |
gn: Add new package python-rpy2-2.9
* gn/packages/python.scm (python-rpy2-2.9): Add it. Breaking changes are
introduced in v3.0.0. See
https://rpy2.github.io/doc/latest/html/changes.html#release-3-0-0
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/python.scm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index d507a6b..b90a258 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -75,6 +75,21 @@ "Variant Call Format (VCF) parser for Python") (license #f))) +(define-public python-rpy2-2.9 + (package + (inherit python-rpy2) + (name "python-rpy2") + (version "2.9.6b0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "rpy2" version)) + (sha256 + (base32 + "1vqgw42a51l162gyg8qbx1xakxbj29riyb6azzv89f260w865k0d")))) + (arguments + `(#:tests? #f)))) + (define-public python2-rpy2 (package (name "python2-rpy2") |