diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:53:15 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:49 +0000 |
commit | 426af5d4d3ae760c5904218d464b368d1c0d5c3c (patch) | |
tree | 5abd6ebdc1e5c5980871e2c8f6e46fdf84277d7b | |
parent | bc90ab92810df9171d4b706b6327370fdca34d0b (diff) | |
download | guix-426af5d4d3ae760c5904218d464b368d1c0d5c3c.tar.gz guix-426af5d4d3ae760c5904218d464b368d1c0d5c3c.zip |
gnu: python-alembic: Move to pyproject-build-system.
* gnu/packages/databases.scm (python-alembic):
[build-system]: Move to pyproject-build-system.
[arguments]: Remove field, now uneeded.
Change-Id: I5907ff84412d867d094aae5fb4daa8481eb7f30c
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/databases.scm | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 25b4681617..323e74534c 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -3845,12 +3845,7 @@ this library provides functions to facilitate such comparisons.") (uri (pypi-uri "alembic" version)) (sha256 (base32 "0lxi2g2025lz5k7k5dd5fc1lfijqi2yw6qqyjzp073z6laa8cckw")))) - (build-system python-build-system) - (arguments - '(#:phases (modify-phases %standard-phases - (replace 'check - (lambda _ - (invoke "pytest" "-vv")))))) + (build-system pyproject-build-system) (native-inputs (list python-mock python-pytest-cov)) (propagated-inputs |