guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/06: gnu: Add python-sgmllib3k.


From: guix-commits
Subject: 04/06: gnu: Add python-sgmllib3k.
Date: Fri, 12 Nov 2021 18:00:38 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 729936cfa4766787218c9e5cf683723544f996f0
Author: Morgan Smith <Morgan.J.Smith@outlook.com>
AuthorDate: Thu Nov 11 10:30:03 2021 -0500

    gnu: Add python-sgmllib3k.
    
    * gnu/packages/python-xyz.scm (python-sgmllib3k): New variable.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a01a14f..e5cdaad 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27815,3 +27815,27 @@ simple mock/record and a complete capture/replay 
framework.")
      "Ijson is an iterative JSON parser with standard Python iterator
 interfaces.")
     (license license:bsd-3)))
+
+(define-public python-sgmllib3k
+  (package
+    (name "python-sgmllib3k")
+    (version "1.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "sgmllib3k" version))
+       (sha256
+        (base32 "1s8jm3dgqabgf8x96931scji679qkhvczlv3qld4qxpsicfgns3q"))))
+    (build-system python-build-system)
+    ;; Requires a test.html input that is not supplied
+    (arguments
+     `(#:tests? #f))
+    (home-page "https://pypi.org/project/sgmllib3k/";)
+    ;; Actual homepage seems to be down
+    ;; (home-page "https://hg.hardcoded.net/sgmllib";)
+    (synopsis "Python 3 port of sgmllib")
+    (description
+     "This packages provides an unmaintained port of sgmllib to Python 3.
+It is used to parse text files formatted in @acronym{SGML,Standard Generalized
+Mark-up Language}.")
+    (license license:bsd-3)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]