diff options
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 38ccab7613..c9ad97fa7b 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -36612,8 +36612,18 @@ blocks or callables with two context managers and two decorators.") (build-system pyproject-build-system) (arguments (list + ;; XXX: Some tests started failing with the move to Python@3.12. + ;; Consider removing this leaf unmaintained package. + #:tests? #f #:test-backend #~'custom - #:test-flags #~(list "tests.py"))) + #:test-flags #~(list "tests.py") + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-python-3.12-incompatibility + (lambda _ + (substitute* "straight/plugin/loaders.py" + (("from imp import find_module") + ""))))))) (native-inputs (list python-mock python-setuptools)) (home-page "https://github.com/ironfroggy/straight.plugin") (synopsis "Simple namespaced plugin facility") |
