diff options
author | Efraim Flashner | 2019-06-27 11:55:05 -0500 |
---|---|---|
committer | Efraim Flashner | 2019-06-27 11:55:05 -0500 |
commit | 18e08e242dff51b403f209e58aa81a4233d271ff (patch) | |
tree | f086b7839985a4d87fc2c269d33226647181defd /gn/packages | |
parent | eac64d6ae88ccc04c15b2e0ddec925bbf8c43d09 (diff) | |
download | guix-bioinformatics-18e08e242dff51b403f209e58aa81a4233d271ff.tar.gz |
gn: Add python24-pyx.
Diffstat (limited to 'gn/packages')
-rw-r--r-- | gn/packages/python24.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gn/packages/python24.scm b/gn/packages/python24.scm index a44bb09..cb9fae5 100644 --- a/gn/packages/python24.scm +++ b/gn/packages/python24.scm @@ -147,3 +147,24 @@ read read ssl ssl tcl tcl tk tk ,(version-major+minor (package-version tcl)) ,(v (synopsis "Stand-alone Assertions for Python") (description "Stand-alone Assertions for Python") (license license:expat))) + +(define-public python24-pyx + (package + (name "python24-pyx") + (version "0.12.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pyx" version)) + (sha256 + (base32 + "13kyhqx19rw7dlv2xapdb68j8l9laq6nrpgkyd6549qwidmb4dz8")))) + (build-system python-build-system) + (arguments + `(#:python ,python-2.4)) + (native-inputs + `(("python24-setuptools" ,python24-setuptools))) + (home-page "http://pyx.sourceforge.net/") + (synopsis "Python package for the generation of PostScript, PDF, and SVG files") + (description "Python package for the generation of PostScript, PDF, and SVG files") + (license license:gpl2+))) |