diff options
author | Nicolas Graves <ngraves@ngraves.fr> | 2024-05-10 00:53:35 +0200 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-13 20:18:51 +0000 |
commit | af8b0d4bbf4a0cc37987c069e592944398234ddb (patch) | |
tree | c570d55ca96003f0ea331f0cc00eb2881b764b0f /gnu | |
parent | 245cb903f163cb6ca3b577fcc9cbd76d2959c60b (diff) | |
download | guix-af8b0d4bbf4a0cc37987c069e592944398234ddb.tar.gz guix-af8b0d4bbf4a0cc37987c069e592944398234ddb.zip |
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')
-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 91daccfd78..55acf54b1f 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -5185,14 +5185,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 |