aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/python24.scm
diff options
context:
space:
mode:
authorEfraim Flashner2019-06-27 13:38:30 -0500
committerEfraim Flashner2019-06-27 14:03:57 -0500
commit44d85ed9e538d55d7380ad3e5e3e747fc5ded9ff (patch)
treeaab82dc5d60cff5551271e2523fd5ed5920bc601 /gn/packages/python24.scm
parentbd76831ad1c50b87e2a631daa585295df73c4ac3 (diff)
downloadguix-bioinformatics-44d85ed9e538d55d7380ad3e5e3e747fc5ded9ff.tar.gz
gn: add python24-piddle.
Diffstat (limited to 'gn/packages/python24.scm')
-rw-r--r--gn/packages/python24.scm27
1 files changed, 27 insertions, 0 deletions
diff --git a/gn/packages/python24.scm b/gn/packages/python24.scm
index 8ad5b6b..3fb060d 100644
--- a/gn/packages/python24.scm
+++ b/gn/packages/python24.scm
@@ -266,3 +266,30 @@ formats, and provides powerful image processing and graphics capabilities.")
(license (license:x11-style
"file://README"
"See 'README' in the distribution."))))
+
+(define-public python24-piddle
+ (package
+ (name "python24-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.4))
+ (native-inputs
+ `(("python24-setuptools" ,python24-setuptools)
+ ("unzip" ,unzip)))
+ (propagated-inputs
+ `(("python24-pil" ,python24-pil)))
+ (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+)))