mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add python-bibtexparser.
* gnu/packages/python-xyz.scm (python-bibtexparser): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
9ba1e308c7
commit
c1bbef6920
1 changed files with 22 additions and 0 deletions
|
@ -65,6 +65,7 @@
|
|||
;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
|
||||
;;; Copyright © 2019 Jacob MacDonald <jaccarmac@gmail.com>
|
||||
;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||
;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -16376,3 +16377,24 @@ (define-public python-elementpath
|
|||
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))))
|
||||
|
|
Loading…
Reference in a new issue