diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-11-22 15:52:35 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-25 12:05:56 +0000 |
| commit | 885fc047ef203fab8c21254a575ac201fbc6505d (patch) | |
| tree | ea35bffb433b425a69ed7d67f547e4712b6d38d9 /gnu | |
| parent | cd4ec00842c45c227fd47cdbd0b269899f723b9c (diff) | |
gnu: python-biblib: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-biblib):
[build-system]: Switch to pyproject-build-system.
[arguments]<#:tests?>: Disable them.
[native-inputs]: Add python-setuptools.
Change-Id: I3388d9ccdab2552c1c7124abb5c8b4ae548ba63a
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 1a493cdf68..6d618c5099 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -35594,7 +35594,9 @@ as the lua interface does.") (sha256 (base32 "1ym1gwxys9gl5a7fjs6xh5z9w50pnq4z3rs6fx7kpv78hlrbjlip")) (file-name (git-file-name name version)))) - (build-system python-build-system) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ; No tests upstream. + (native-inputs (list python-setuptools)) (home-page "https://github.com/aclements/biblib") (synopsis "BibTeX parsing and transformation library") (description |
