guix-commits
[Top][All Lists]
Advanced

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

05/07: gnu: Add python-bibtexparser.


From: guix-commits
Subject: 05/07: gnu: Add python-bibtexparser.
Date: Sat, 21 Sep 2019 10:49:03 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit c1bbef6920b1eb7e212b5e11d0385d477a53fbfb
Author: Wiktor Żelazny <address@hidden>
Date:   Mon Sep 16 18:19:39 2019 +0200

    gnu: Add python-bibtexparser.
    
    * gnu/packages/python-xyz.scm (python-bibtexparser): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 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 4e33fa5..69c8e63 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.
 ;;;
@@ -16376,3 +16377,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))))



reply via email to

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