diff options
author | BonfaceKilz | 2021-04-20 22:10:44 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-04-20 22:10:44 +0300 |
commit | 7b6e878d2661e43d3220cecbae17f9ffea71b84b (patch) | |
tree | d8a2e5787ec0a8a95f0d1affe5b27dda4104549d /gn/packages | |
parent | 22c4d6fad8d77dedcec0f966c800a89909202697 (diff) | |
download | guix-bioinformatics-7b6e878d2661e43d3220cecbae17f9ffea71b84b.tar.gz |
gn: python: Add python-rpy2-next
Diffstat (limited to 'gn/packages')
-rw-r--r-- | gn/packages/python.scm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index b1cb6ab..d856205 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -1665,3 +1665,16 @@ sorted order.") (synopsis "SQLAlchemy stubs and mypy plugin") (description "SQLAlchemy stubs and mypy plugin") (license license:expat))) + +(define-public python-rpy2-next + (package + (inherit python-rpy2) + (name "python-rpy2-next") + (version "3.4.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "rpy2" version)) + (sha256 + (base32 + "0l4fvm58fyz044hxpaw3a8w1nlki1n8iikrg9bdd7imz04kqd671")))))) |