diff options
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-web.scm | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index de81c9d474..91daccfd78 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -6223,20 +6223,10 @@ the non-map-specific features. It can be used to generate HTML + JS.") (uri (pypi-uri "tinycss" version)) (sha256 (base32 "0vkifr595h28ymkjhrswwf0bm23lhznh5f44xyp7x7jy1ssnyc0j")))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'disable-flake8-isort - ;; Flake8 and isort tests fail. - (lambda _ - (substitute* "setup.cfg" ((" --flake8 --isort") "")) - #t)) - (replace 'check - (lambda _ - ;; Disable failing test. - (invoke "python" "-m" "pytest" "-k" - "not test_speedups")))))) + (list #:test-flags + '(list "-k" "not test_speedups"))) (native-inputs (list python-pytest-cov python-pytest-flake8 python-pytest-isort python-pytest-runner)) |