summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-11-08 14:54:37 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-11 16:02:05 +0000
commitae2e089b5a23c1a721e43819e6feb9c3b664907b (patch)
treee95a93c5a7f17334c94e0810454d5889155a03a1 /gnu/packages
parenta5c32a958bee257dfb64cf80ca08d134b64c0eff (diff)
gnu: python-bibtexparser: Update to 2.0.0b8.
* gnu/packages/python-xyz.scm (python-bibtexparser): Update to 2.0.0b8. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [native-inputs]: Remove python-future. Add python-pylatexenc, python-pytest and python-setuptools. (python-bibtexparser-for-cobib): New variable. * gnu/packages/textutils.scm (cobib)[propagated-inputs]: Remove python-bibtexparser; add python-bibtexparser-for-cobib. Change-Id: I924fba9ccf9487dea6409fb4d1e1d69ab026c130 Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-xyz.scm38
-rw-r--r--gnu/packages/textutils.scm2
2 files changed, 30 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0d55ed3e35b..4f33bdf5480 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -28837,21 +28837,41 @@ for manual interpretation.")
28837(define-public python-bibtexparser 28837(define-public python-bibtexparser
28838 (package 28838 (package
28839 (name "python-bibtexparser") 28839 (name "python-bibtexparser")
28840 (version "1.4.0") 28840 (version "2.0.0b8")
28841 (source (origin 28841 (source
28842 (method url-fetch) 28842 (origin
28843 (uri (pypi-uri "bibtexparser" version)) 28843 (method git-fetch)
28844 (sha256 28844 (uri (git-reference
28845 (base32 28845 (url "https://github.com/sciunto-org/python-bibtexparser")
28846 "1rmc178qqb8814v3pcfv4qgl8rxmkd11d56limkqmi776jyf4z6a")))) 28846 (commit (string-append "v" version))))
28847 (build-system python-build-system) 28847 (file-name (git-file-name name version))
28848 (sha256
28849 (base32 "065b6267ygphacfc9aawckv0yz9x3pzd4ivdbsr8cla3zs3lqzg7"))))
28850 (build-system pyproject-build-system)
28848 (propagated-inputs (list python-pyparsing)) 28851 (propagated-inputs (list python-pyparsing))
28849 (native-inputs (list python-future)) 28852 (native-inputs
28853 (list python-pylatexenc python-pytest python-setuptools))
28850 (home-page "https://github.com/sciunto-org/python-bibtexparser") 28854 (home-page "https://github.com/sciunto-org/python-bibtexparser")
28851 (synopsis "Python library to parse BibTeX files") 28855 (synopsis "Python library to parse BibTeX files")
28852 (description "BibtexParser is a Python library to parse BibTeX files.") 28856 (description "BibtexParser is a Python library to parse BibTeX files.")
28853 (license (list license:bsd-3 license:lgpl3)))) 28857 (license (list license:bsd-3 license:lgpl3))))
28854 28858
28859(define-public python-bibtexparser-for-cobib
28860 (hidden-package
28861 (package
28862 (inherit python-bibtexparser)
28863 (name "python-bibtexparser")
28864 (version "1.4.0")
28865 (source
28866 (origin
28867 (method git-fetch)
28868 (uri (git-reference
28869 (url "https://github.com/sciunto-org/python-bibtexparser")
28870 (commit (string-append "v" version))))
28871 (file-name (git-file-name name version))
28872 (sha256
28873 (base32 "0zrgfgmh37m9frq528vy66p2fhlxzrxyhj0inc6qwg0m717w9zbl")))))))
28874
28855(define-public python-distro 28875(define-public python-distro
28856 (package 28876 (package
28857 (name "python-distro") 28877 (name "python-distro")
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index 1c0d973bf1a..7a1193e6a1d 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -1439,7 +1439,7 @@ OpenDocument presentations (*.odp).")
1439 python-setuptools)) 1439 python-setuptools))
1440 (propagated-inputs 1440 (propagated-inputs
1441 (list python-beautifulsoup4 1441 (list python-beautifulsoup4
1442 python-bibtexparser 1442 python-bibtexparser-for-cobib
1443 python-lxml 1443 python-lxml
1444 python-mdit-py-plugins ;XXX: for sanity-check 1444 python-mdit-py-plugins ;XXX: for sanity-check
1445 python-natsort 1445 python-natsort