diff options
author | Pjotr Prins | 2016-08-13 08:13:27 -0500 |
---|---|---|
committer | Pjotr Prins | 2016-08-13 08:13:27 -0500 |
commit | 71fd1cbbd9fb97b6893f707123f843a9d9ab7522 (patch) | |
tree | 0774350773c8f2bb4768c26065e731b117aa708c /gn | |
parent | f5fd71a6b1668710e81141dcbd322f761afb90f5 (diff) | |
download | guix-bioinformatics-71fd1cbbd9fb97b6893f707123f843a9d9ab7522.tar.gz |
python-pil: replace with pillow
Diffstat (limited to 'gn')
-rw-r--r-- | gn/packages/bioinformatics.scm | 2 | ||||
-rw-r--r-- | gn/packages/genenetwork.scm | 4 | ||||
-rw-r--r-- | gn/packages/python.scm | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm index c984c7e..c1b22fd 100644 --- a/gn/packages/bioinformatics.scm +++ b/gn/packages/bioinformatics.scm @@ -6,7 +6,7 @@ #:use-module (guix utils) #:use-module (guix download) #:use-module (guix git-download) - ;; #:use-module (guix build-system ant) + #:use-module (guix build-system ant) #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) #:use-module (guix build-system perl) diff --git a/gn/packages/genenetwork.scm b/gn/packages/genenetwork.scm index 1382cfb..4f3d356 100644 --- a/gn/packages/genenetwork.scm +++ b/gn/packages/genenetwork.scm @@ -125,7 +125,7 @@ ; ("python2-simplejson" ,python2-simplejson) ; ("python2-pyyaml" ,python2-pyyaml) ;; python-yolk is not needed - ("python2-pil" ,python2-pil) + ("python2-pillow" ,python2-pillow) ("python2-numarray" ,python2-numarray) ("plink" ,plink) ;; gn1 ; ("r-qtl" ,r-qtl) @@ -182,7 +182,7 @@ ("python2-passlib" ,python2-passlib) ("python2-piddle-gn" ,python2-piddle-gn) ("python2-redis" ,python2-redis) - ("python2-pil" ,python2-pil) + ("python2-pillow" ,python2-pillow) ("python2-requests" ,python2-requests) ("python2-rpy2" ,python2-rpy2) ("python2-scipy" ,python2-scipy) diff --git a/gn/packages/python.scm b/gn/packages/python.scm index 2dda0af..1d071fa 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -396,7 +396,7 @@ version ".tgz")) (native-inputs `(("python2-setuptools" ,python2-setuptools))) (propagated-inputs - `(("python2-pil" ,python2-pil))) + `(("python2-pillow" ,python2-pillow))) (arguments `( #:python ,python-2 |