From 55b4d55b699ab4a301e54a59759bad8e763a661f Mon Sep 17 00:00:00 2001 From: Sergey Trofimov Date: Thu, 18 Dec 2025 09:20:10 +0100 Subject: [PATCH] gnu: python-clickgen: Update to 2.2.5. * gnu/packages/python-xyz.scm (python-clickgen): Update to 2.2.5. [source]: Fetch from git. [build-system]: Switch to pyproject-build-system. [arguments]<#:test-flags>: Ignore broken test. [inputs]: Remove libx11, libpng, and libxcursor. [propagated-inputs]: Add python-pyyaml. [native-inputs]: Remove python-wheel; add python-pytest, and python-setuptools. Change-Id: Icb0ba11d9b542f38a02c7ab9262d146cbff329ef Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-xyz.scm | 31 ++++++++++++++++++++++--------- 1 file changed, 22 insertions(+), 9 deletions(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index c69a3d76b69f1a29cf09500b744fc43f13e10d70..9ca6ca343f36c36ae922e6b3d05ffde76e24fe11 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -7853,18 +7853,31 @@ with sensible defaults out of the box.") (define-public python-clickgen (package (name "python-clickgen") - (version "2.1.3") + (version "2.2.5") (source (origin - (method url-fetch) - (uri (pypi-uri "clickgen" version)) + (method git-fetch) + (uri (git-reference + (url "https://github.com/ful1e5/clickgen") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) (sha256 (base32 - "010j9zz0gd2za5l4hibicypnfw721x0gxp3rr0329bc97vw5maha")))) - (build-system python-build-system) + "0gdbkdw9b52wbb0bbhs09bdfyfq979kvlv5sg5p70y3jal9j8lf8")))) + (build-system pyproject-build-system) + (arguments + (list + #:test-flags + ;; XXX: See: . + '(list "-k" "not test_clickgen_raises"))) + (native-inputs + (list python-pytest + python-setuptools)) (propagated-inputs - (list python-pillow python-toml python-numpy python-attrs)) - (inputs (list libx11 libpng libxcursor)) - (native-inputs (list python-wheel)) + (list python-attrs + python-numpy + python-pillow + python-pyyaml + python-toml)) (home-page "https://github.com/ful1e5/clickgen") (synopsis "The hassle-free cursor building toolbox") (description @@ -19809,7 +19822,7 @@ text.") ;; XXX: Probably will be resolved in the next ;; release, as botocore's refresh pace is fast. - ;; + ;; ;; botocore.exceptions.UnknownServiceError: Unknown ;; service: <...> "test_create_app_response"