rekahsoft-gnu: Add python-htmlark

This commit is contained in:
Collin J. Doering 2021-12-02 22:29:58 -05:00
parent 05775e720c
commit 792792e940
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 23 additions and 0 deletions

View File

@ -28,6 +28,7 @@
#:use-module (gnu packages python-web)
#:use-module (gnu packages python-xyz)
#:use-module (gnu packages serialization)
#:use-module (gnu packages xml)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
@ -409,3 +410,25 @@ Amazon Web Services (AWS) API.")))
(sha256
(base32
"161blyxa7cg3k7f9hk6bs8hdmchg6gd1wjn1gnw21sxpch5b3wzi")))))))
(define-public python-htmlark
(package
(name "python-htmlark")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "HTMLArk" version))
(sha256
(base32 "0qg2vwnlqhdhxxkji3l6ls4ycsrjmhvjizsa7hw08373f69mj68v"))))
(build-system python-build-system)
(propagated-inputs
`(("python-beautifulsoup4" ,python-beautifulsoup4)
("python-lxml" ,python-lxml)
("python-html5lib" ,python-html5lib)
("python-requests" ,python-requests)))
(home-page "https://github.com/BitLooter/htmlark")
(synopsis "Pack a webpage including support files into a single HTML file")
(description
"Pack a webpage including support files into a single HTML file.")
(license license:expat)))