GNU bug report logs -
#43444
[PATCH 1/2] gnu: Add python-rnc2rng.
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your bug report
#43444: [PATCH 1/2] gnu: Add python-rnc2rng.
which was filed against the guix-patches package, has been closed.
The explanation is attached below, along with your original report.
If you require more details, please reply to 43444 <at> debbugs.gnu.org.
--
43444: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=43444
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
[Message part 3 (text/plain, inline)]
Hi,
Konrad Hinsen <konrad.hinsen <at> fastmail.net> skribis:
> * gnu/packages/python-xyz.scm (python-rnc2rng): New variable.
Applied with the changes below, thanks!
Ludo’.
[Message part 4 (text/x-patch, inline)]
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 55ef5f5640..004f07cec2 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22038,12 +22038,11 @@ and pandoc-citeproc.")
`(#:phases (modify-phases %standard-phases
(replace 'check
(lambda _
- (invoke "python" "test.py")
- #t)))))
+ (invoke "python" "test.py"))))))
(home-page "https://github.com/djc/rnc2rng")
- (synopsis
- "RELAX NG Compact to regular syntax conversion library")
+ (synopsis "Convert RELAX NG Compact to regular syntax")
(description
- "Converts RELAX NG schemata in Compact syntax (rnc) to
+ "This package provides the @command{rnc2rng} command-line tool as well as
+a Python library to convert RELAX NG schemata in Compact syntax (rnc) to
equivalent schemata in the XML-based default RELAX NG syntax.")
(license license:expat)))
[Message part 5 (message/rfc822, inline)]
* gnu/packages/python-xyz.scm (python-rnc2rng): New variable.
---
gnu/packages/python-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 24fc512178..fd58921953 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -22016,3 +22016,31 @@ By default it uses the open Python vulnerability database Safety DB.")
(synopsis "Python wrapper for pandoc.")
(description "Thin Python wrapper for pandoc.")
(license license:expat)))
+
+(define-public python-rnc2rng
+ (package
+ (name "python-rnc2rng")
+ (version "2.6.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "rnc2rng" version))
+ (sha256
+ (base32
+ "1kmp3iwxxyzjsd47j2sprd47ihhkwhb3yydih3af5bbfq0ibh1w8"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-rply" ,python-rply)))
+ (arguments
+ `(#:phases (modify-phases %standard-phases
+ (replace 'check
+ (lambda _
+ (invoke "python" "test.py")
+ #t)))))
+ (home-page "https://github.com/djc/rnc2rng")
+ (synopsis
+ "RELAX NG Compact to regular syntax conversion library")
+ (description
+ "Converts RELAX NG schemata in Compact syntax (rnc) to
+equivalent schemata in the XML-based default RELAX NG syntax.")
+ (license license:expat)))
--
2.28.0
This bug report was last modified 4 years and 244 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.