diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:53:35 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-05-23 22:47:11 +0200 |
commit | fbea2074460d6a8caeefd5107935d565b51fa1e2 (patch) | |
tree | 475a31b51148c8b31adf103be3181fe39ccdfbe2 /gnu/packages/python-web.scm | |
parent | 575a3212c09bb1694a00e1bbe6577f78f1beb6af (diff) |
gnu: python-flask-login: Move to pyproject-build-system.
* gnu/packages/python-web.scm (python-flask-login):
[build-system]: Move to pyproject-build-system.
[arguments]: Remove uneeded field.
Change-Id: I9f3abb36b642ad2860c68f13f9d9e8b8b5f40811
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu/packages/python-web.scm')
-rw-r--r-- | gnu/packages/python-web.scm | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 9aac1a2abe..f3180469b4 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -4853,14 +4853,7 @@ on the command line.") (file-name (git-file-name name version)) (sha256 (base32 "12yw01ccgjn9c88cbkrd6k1ykjxd8fxip2b1isvxjirphnlqhn9g")))) - (build-system python-build-system) - (arguments - (list #:phases - #~(modify-phases %standard-phases - (replace 'check - (lambda* (#:key tests? #:allow-other-keys) - (when tests? - (invoke "pytest" "-vv" "-c" "/dev/null"))))))) + (build-system pyproject-build-system) (propagated-inputs (list python-flask)) (native-inputs |