diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:53:15 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-10-14 23:53:14 +0100 |
commit | 4e8de87fd9de27c8dbaa1e387954f23e8353e589 (patch) | |
tree | f7c9c0398977f233bc58df8de3113fe4ebbee9b9 | |
parent | 61261b1c3c926f113a70c10826e43535cce591fe (diff) |
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 8debe6a5bb..1691e9aecc 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -3820,12 +3820,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 |