rekado pushed a commit to branch python-team in repository guix. commit f89f8cfab63093bc860cf8d3d3014d8b6b0865ef Author: Ricardo Wurmus <rek...@elephly.net> AuthorDate: Tue Dec 17 11:32:15 2024 +0100
gnu: python-extension-helpers: Update to 1.2.0. * gnu/packages/python-xyz.scm (python-extension-helpers): Update to 1.2.0. [arguments]: Disable broken test. Change-Id: I3a99240c52fc8114b6eb4d7c3e6642530cf7d756 --- gnu/packages/python-xyz.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 9454bc9079..0b64c3dbdb 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5364,7 +5364,7 @@ and is not compatible with JSON.") (define-public python-extension-helpers (package (name "python-extension-helpers") - (version "1.1.1") + (version "1.2.0") (source (origin (method git-fetch) ; no tests in the PyPI tarball @@ -5373,17 +5373,17 @@ and is not compatible with JSON.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "1lkhypg21ydx03z03dppbf05zff40dyl0kn6nichzfdfpqnr5055")))) + (base32 "1cfzh3ijjp18as2qnmm1nnw6a3daqd7a2q17i0c6h1wq2jbawxxa")))) (build-system pyproject-build-system) (arguments (list ;; It tries to install it via pip: E ModuleNotFoundError: No module named ;; 'helpers_test_package_fd9cc3a9_11fa_4a1a_b80e_c5b043949604' - #:test-flags #~(list "-k" "not test_only_pyproject[True]") + #:test-flags #~(list "-k" "not test_only_pyproject and not test_no_setup_py") #:phases #~(modify-phases %standard-phases ;; LookupError: setuptools-scm was unable to detect version for - ;; /tmp/guix-build-python-extension-helpers-1.1.1.drv-0/source. + ;; /tmp/guix-build-python-extension-helpers-1.2.0.drv-0/source. (add-before 'build 'set-version (lambda _ (setenv "SETUPTOOLS_SCM_PRETEND_VERSION" #$version)))