diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-09 12:29:03 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-10-09 12:37:31 +0100 |
| commit | 817350b815ffd3559bdb220f7ee53257e322bb7e (patch) | |
| tree | a3fae48223bbb94fdf3d8ce0fb10c97a1af696df /gnu/packages/python-xyz.scm | |
| parent | 9649492959dceb0d585a41ba74fe17261d41ca12 (diff) | |
gnu: python-verboselogs: Switch to pyproject.
* gnu/packages/python-xyz.scm (python-verboselogs):
[build-system]: Switch to pyproejct-build-system.
[arguments] <test-flags>: Move pytest option here from custom 'check.
<phases>: Use default 'check.
[native-inputs]: Add python-setuptools.
Change-Id: Ifa85553cfbafd32d2ed98b68b8781a66cdf14f18
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9e39782483..3a611a164b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5915,6 +5915,7 @@ for additional processing.") "Fastprogress is a progress bar for Jupyter Notebook and console.") (license license:asl2.0))) +;; XXX: No updates since 2017. (define-public python-verboselogs (package (name "python-verboselogs") @@ -5924,20 +5925,19 @@ for additional processing.") (method url-fetch) (uri (pypi-uri "verboselogs" version)) (sha256 - (base32 - "09z4d1jiasn7k1hs5af2ckmnrd0i1d1m04bhfjhv7z6svzfdwgg3")))) - (build-system python-build-system) + (base32 "09z4d1jiasn7k1hs5af2ckmnrd0i1d1m04bhfjhv7z6svzfdwgg3")))) + (build-system pyproject-build-system) (arguments - `(#:phases - (modify-phases %standard-phases - (replace 'check - (lambda _ - ;; Do not run pylint plugin test, as astroid is an old - ;; unsupported version. - (invoke "pytest" "-v" "-k" "not test_pylint_plugin" - "verboselogs/tests.py")))))) + (list + #:test-flags + ;; Do not run pylint plugin test, as astroid is an old unsupported + ;; version. + #~(list "-k" "not test_pylint_plugin" + "verboselogs/tests.py"))) (native-inputs - (list python-mock python-pytest)) + (list python-mock + python-pytest + python-setuptools)) (home-page "https://verboselogs.readthedocs.io") (synopsis "Verbose logging level for Python's logging module") (description |
