me
/
guix
Archived
1
0
Fork 0

gnu: python-bibtexparser: Update to 1.4.0.

* gnu/packages/python-xyz.scm (python-bibtexparser): Update to 1.4.0.

Signed-off-by: Christopher Baines <mail@cbaines.net>
master
Amade Nemes 2023-03-05 18:43:28 +01:00 committed by Christopher Baines
parent c2dbcbefe2
commit e5cc1fffba
No known key found for this signature in database
GPG Key ID: 5E28A33B0B84F577
1 changed files with 10 additions and 12 deletions

View File

@ -133,6 +133,7 @@
;;; Copyright © 2022 Baptiste Strazzulla <bstrazzull@hotmail.fr> ;;; Copyright © 2022 Baptiste Strazzulla <bstrazzull@hotmail.fr>
;;; Copyright © 2022 Nicolas Graves <ngraves@ngraves.fr> ;;; Copyright © 2022 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2023 Gabriel Wicki <gabriel@erlikon.ch> ;;; Copyright © 2023 Gabriel Wicki <gabriel@erlikon.ch>
;;; Copyright © 2023 Amade Nemes <nemesamade@gmail.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -25148,19 +25149,16 @@ for manual interpretation.")
(define-public python-bibtexparser (define-public python-bibtexparser
(package (package
(name "python-bibtexparser") (name "python-bibtexparser")
(version "1.1.0") (version "1.4.0")
(source (source (origin
(origin (method url-fetch)
(method url-fetch) (uri (pypi-uri "bibtexparser" version))
(uri (pypi-uri "bibtexparser" version)) (sha256
(sha256 (base32
(base32 "1rmc178qqb8814v3pcfv4qgl8rxmkd11d56limkqmi776jyf4z6a"))))
"0zwhfkrzf3n5847dbnfng92k7ak199l9v6x6ax3dgdidfpm6d2fz"))))
(build-system python-build-system) (build-system python-build-system)
(propagated-inputs (propagated-inputs (list python-pyparsing))
(list python-pyparsing)) (native-inputs (list python-future))
(native-inputs
(list python-future))
(home-page "https://github.com/sciunto-org/python-bibtexparser") (home-page "https://github.com/sciunto-org/python-bibtexparser")
(synopsis "Python library to parse BibTeX files") (synopsis "Python library to parse BibTeX files")
(description "BibtexParser is a Python library to parse BibTeX files.") (description "BibtexParser is a Python library to parse BibTeX files.")