diff options
author | Muriithi Frederick Muriuki | 2018-04-04 12:07:40 +0300 |
---|---|---|
committer | Muriithi Frederick Muriuki | 2018-04-04 12:07:40 +0300 |
commit | ed82add468b0bc37eec68d17ec333257a23aa1bc (patch) | |
tree | 2352032e7ad34014718d1ac52630dd0811d8e95f | |
parent | ea3f2e52986f5925df63e9fffa634aa267e25ec2 (diff) | |
download | guix-bioinformatics-ed82add468b0bc37eec68d17ec333257a23aa1bc.tar.gz |
gn: Add new package
* gn/packages/python.scm (python-htmlgen): New variable.
-rw-r--r-- | gn/packages/python.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index a4b0955..ff8bf57 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -631,3 +631,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))) |