diff options
author | Muriithi Frederick Muriuki | 2018-06-30 11:21:54 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2018-06-30 11:21:54 +0300 |
commit | 0b02fa474bbed75f7c4a0c170aa8c47cde358381 (patch) | |
tree | 07aa515b43c84ef146a3caf4a55f3924dc399f78 /gn/packages/python.scm | |
parent | 5347485b6d1d42fa182402fa1fdacba358a3031e (diff) | |
parent | 2f05ef36c428f92c9c46167b81fc6bf11b79505e (diff) | |
download | guix-bioinformatics-0b02fa474bbed75f7c4a0c170aa8c47cde358381.tar.gz |
Merge branch 'master' of gitlab.com:fredmanglis/guix-bioinformatics
* Merge changes to genenetwork3 package.
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r-- | gn/packages/python.scm | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index 23444f6..f254ce3 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -176,7 +176,7 @@ functions.") (propagated-inputs `(("inotify-tools" ,inotify-tools))) (arguments `( - #:python ,python-2 ; GN2 is still python2 + ;; #:python ,python-2 ; GN2 is still python2 #:tests? #f)) ;; No tests. (home-page "http://gunicorn.org") (synopsis @@ -597,3 +597,24 @@ objects using the same basic infrastructure and syntax. Numarray is now part of the numpy package, though some legacy software still uses the older versions.") (license license:gpl2))) ; actualy PyRAF http://www.stsci.edu/resources/software_hardware/pyraf/LICENSE + +(define-public python-htmlgen + (package + (name "python-htmlgen") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/srittau/python-htmlgen/archive/v" + version ".tar.gz")) + (sha256 + (base32 + "1rwgqxhmc93l60wf4ay7ph619710kvyp73s22i0snjpm5i0bhc46")))) + (build-system python-build-system) + (arguments + `(#:tests? #f)) + (synopsis "Python HTML 5 Generator") + (description "This is a python library for generating html from classes.") + (home-page "https://github.com/srittau/python-htmlgen") + (license license:expat))) |