emacs-bug-tracker
[Top][All Lists]
Advanced

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

[debbugs-tracker] bug#37431: closed ([PATCH] gnu: Add python-bibtexparse


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#37431: closed ([PATCH] gnu: Add python-bibtexparser.)
Date: Fri, 20 Sep 2019 20:50:03 +0000

Your message dated Fri, 20 Sep 2019 22:49:00 +0200
with message-id <address@hidden>
and subject line Re: [bug#37431] [PATCH] gnu: Add python-bibtexparser.
has caused the debbugs.gnu.org bug report #37431,
regarding [PATCH] gnu: Add python-bibtexparser.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
37431: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=37431
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add python-bibtexparser. Date: Mon, 16 Sep 2019 18:19:39 +0200
From: Wiktor Żelazny <address@hidden>

* gnu/packages/python-xyz.scm (python-bibtexparser): New variable.
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4541604873..21fed40cc3 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -65,6 +65,7 @@
 ;;; Copyright © 2019 Pierre Langlois <address@hidden>
 ;;; Copyright © 2019 Jacob MacDonald <address@hidden>
 ;;; Copyright © 2019 Giacomo Leidi <address@hidden>
+;;; Copyright © 2019 Wiktor Żelazny <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -16265,3 +16266,24 @@ ElementTree library and for the @uref{http://lxml.de, 
lxml.etree} library.
 For lxml.etree this package can be useful for providing XPath 2.0 selectors,
 because lxml.etree already has it's own implementation of XPath 1.0.")
     (license license:expat)))
+
+(define-public python-bibtexparser
+  (package
+    (name "python-bibtexparser")
+    (version "1.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "bibtexparser" version))
+       (sha256
+        (base32
+         "0zwhfkrzf3n5847dbnfng92k7ak199l9v6x6ax3dgdidfpm6d2fz"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-pyparsing" ,python-pyparsing)))
+    (native-inputs
+     `(("python-future" ,python-future)))
+    (home-page "https://github.com/sciunto-org/python-bibtexparser";)
+    (synopsis "Python library to parse bibtex files")
+    (description "BibtexParser is a python library to parse bibtex files.")
+    (license (list license:bsd-3 license:lgpl3))))
-- 
2.23.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#37431] [PATCH] gnu: Add python-bibtexparser. Date: Fri, 20 Sep 2019 22:49:00 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux)
Wiktor Żelazny <address@hidden> skribis:

> From: Wiktor Żelazny <address@hidden>
>
> * gnu/packages/python-xyz.scm (python-bibtexparser): New variable.

Applied with the minor changes below, thanks!

Ludo’.

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a9ca56aeed..69c8e63ecf 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -16395,6 +16395,6 @@ because lxml.etree already has it's own implementation 
of XPath 1.0.")
     (native-inputs
      `(("python-future" ,python-future)))
     (home-page "https://github.com/sciunto-org/python-bibtexparser";)
-    (synopsis "Python library to parse bibtex files")
-    (description "BibtexParser is a python library to parse bibtex files.")
+    (synopsis "Python library to parse BibTeX files")
+    (description "BibtexParser is a Python library to parse BibTeX files.")
     (license (list license:bsd-3 license:lgpl3))))

--- End Message ---

reply via email to

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