diff options
author | Efraim Flashner | 2019-07-14 02:43:16 -0500 |
---|---|---|
committer | Efraim Flashner | 2019-07-14 02:43:57 -0500 |
commit | 62f4ca3bff753d6353557d4e9d8d54deb6640a4c (patch) | |
tree | 765f16ccad59ed9ea76ef4a20c01887dba6fffdb /gn/packages/python.scm | |
parent | f89f08a06bd944de230920f4d9ca00bcb7c2f52d (diff) | |
download | guix-bioinformatics-62f4ca3bff753d6353557d4e9d8d54deb6640a4c.tar.gz |
gn: Add python2-piddle-1.0.15.
* gn/packages/python.scm (python2-piddle-1.0.15): New variable.
* gn/packages/python24.scm (python24-piddle): Inherit from
python2-piddle-1.0.15.
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r-- | gn/packages/python.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index 0eda295..e56844b 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -675,6 +675,34 @@ version ".tgz")) (description #f) (license #f))) +(define-public python2-piddle-1.0.15 + (package + (name "python2-piddle") + (version "1.0.15") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/piddle/piddle/" + version "/piddle-" version ".zip")) + (sha256 + (base32 + "0jaxfsrcgqb5cf2wznxnpdws5khlrdixmg85lrhq2zl9cy6dfdya")))) + (build-system python-build-system) + (arguments + `(#:python ,python-2 + #:use-setuptools? #f + #:tests? #f)) ; tests are interactive + (native-inputs + `(("unzip" ,unzip))) + (propagated-inputs + `(("python2-pil" ,python2-pil1))) + (home-page "http://www.strout.net/info/coding/python/piddle/") + (synopsis "Plug-In Drawing, Does Little Else") + (description "PIDDLE is designed for vector graphics -- i.e., drawing of +primitives such as lines and ellipses, rather than manipulation of individual +pixels.") + (license license:gpl2+))) + (define-public python2-parallel ; guix fix number of things (package (name "python2-parallel") |