aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/python.scm
diff options
context:
space:
mode:
authorpjotrp2017-09-21 14:36:08 +0000
committerpjotrp2017-09-21 14:36:08 +0000
commit0a239e32c6db1b95843eb9e120eaa6bb3b4c862d (patch)
tree46c4ba53c287cfe88ce105045e1690036d6eadce /gn/packages/python.scm
parent4b06881660a1884f662da67f75e55de3d4467a94 (diff)
downloadguix-bioinformatics-0a239e32c6db1b95843eb9e120eaa6bb3b4c862d.tar.gz
python-rserve added
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r--gn/packages/python.scm32
1 files changed, 32 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm
index a045724..9bdb1ca 100644
--- a/gn/packages/python.scm
+++ b/gn/packages/python.scm
@@ -148,6 +148,38 @@ powerful language for representing information.")
`(#:python ,python-2
#:tests? #f))))) ; 3 tests fail, also outside Guix
+(define-public python-rserve
+ (package
+ (name "python-rserve")
+ (version "0.91")
+ (source
+ (origin
+ (method url-fetch)
+ ; https://pypi.python.org/packages/27/e8/b23e0e3d38dadc721947bc9f4b6f1b3e5e1e6c26ac67d8ad88376c5555a0/pyRserve-0.9.1.tar.gz#md5=6da1978f908dd7bdc2d22ee5c29238c0
+ (uri (string-append
+ "https://pypi.python.org/packages/27/e8/b23e0e3d38dadc721947bc9f4b6f1b3e5e1e6c26ac67d8ad88376c5555a0/pyRserve-0.9.1.tar.gz"))
+ (sha256
+ (base32
+ "162dg7d0ni035b75qskrjdzd1yyxwnvybcv115aiapcvyfw2vbsm"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(
+ ("python-numpy" ,python-numpy)
+ ))
+ (inputs
+ `(("python-setuptools" ,python-setuptools)
+ ("python-pytest" ,python-pytest)
+ ))
+ (home-page "https://pypi.python.org/pypi/pyRserve")
+ (synopsis
+ "RServe.")
+ (description
+ ".")
+ (license license:expat)))
+
+(define-public python2-rserve
+ (package-with-python2 python-rserve))
+
(define-public python-avro ; guix ready - used by CWL
(package
(name "python-avro")