summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <ricardo.wurmus@mdc-berlin.de>2015-07-10 14:58:09 +0200
committerRicardo Wurmus <ricardo.wurmus@mdc-berlin.de>2015-07-20 11:50:43 +0200
commitd05c6da05d99275176c8d0e2c9d4aadecefbee9c (patch)
tree2bcc06c76930f277e4d8d9ad0b3d4a6a6b78b939
parentaaf625b8dc9a6d4d3f257af9f6db47fa9f414ee9 (diff)
gnu: Add python-gridmap.
* gnu/packages/python.scm (python-gridmap, python2-gridmap): New variables.
-rw-r--r--gnu/packages/python.scm31
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 9550f0d4c6c..4962a57a2f9 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3290,6 +3290,37 @@ Python language binding specification.")
3290(define-public python2-drmaa 3290(define-public python2-drmaa
3291 (package-with-python2 python-drmaa)) 3291 (package-with-python2 python-drmaa))
3292 3292
3293(define-public python-gridmap
3294 (package
3295 (name "python-gridmap")
3296 (version "0.13.0")
3297 (source
3298 (origin
3299 (method url-fetch)
3300 (uri (string-append
3301 "https://github.com/pygridtools/gridmap/archive/v"
3302 version ".tar.gz"))
3303 (file-name (string-append name "-" version ".tar.gz"))
3304 (sha256
3305 (base32 "1gzjg2k6f14i1msm2b0ax8d9ds1hvk6qd5nlaivg8m4cxqp4cp1x"))))
3306 (build-system python-build-system)
3307 (inputs
3308 `(("python-psutil" ,python-psutil)
3309 ("python-drmaa" ,python-drmaa)
3310 ("python-pyzmq" ,python-pyzmq)))
3311 (native-inputs
3312 `(("python-setuptools" ,python-setuptools)))
3313 (home-page "https://github.com/pygridtools/gridmap")
3314 (synopsis "Create jobs on a cluster directly from Python")
3315 (description
3316 "Gridmap is a Python package to allow you to easily create jobs on the
3317cluster directly from Python. You can directly map Python functions onto the
3318cluster without needing to write any wrapper code yourself.")
3319 (license gpl3+)))
3320
3321(define-public python2-gridmap
3322 (package-with-python2 python-gridmap))
3323
3293(define-public python-ipython 3324(define-public python-ipython
3294 (package 3325 (package
3295 (name "python-ipython") 3326 (name "python-ipython")