From a6c21cd8c0b442c1d2ebb6c099a0c0bc103bd97b Mon Sep 17 00:00:00 2001 From: Vinicius Monego Date: Sat, 28 Jun 2025 00:44:41 -0300 Subject: gnu: python-get-version: Update to 3.5.5. * gnu/packages/python-xyz.scm (python-get-version): Update to 3.5.5. [build-system]: Use pyproject-build-system. [arguments]: Add '#:tests? #f'. [propagated-inputs]: Remove python-pygments, python-pytest, python-pytest-black, python-pytest-cov, python-setuptools, python-testpath. Add python-dunamai. [native-inputs]: Add python-flit-core. Change-Id: I14330db6c4efed12aaaa2f8bc046ecffd78d49a1 --- gnu/packages/python-xyz.scm | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'gnu/packages/python-xyz.scm') diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index acd57d35b98..43242e2ceea 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17818,22 +17818,21 @@ export WEATHER_CLI_API=@var{your OpenWeatherMap API key} (define-public python-get-version (package (name "python-get-version") - (version "2.1") + (version "3.5.5") (source (origin (method url-fetch) (uri (pypi-uri "get_version" version)) (sha256 (base32 - "1g15jyx33vkxavv9hwv275cs4g9bp2i1y942raw3fxamq8kbaml1")))) - (build-system python-build-system) - (propagated-inputs - (list python-pygments - python-pytest - python-pytest-black - python-pytest-cov - python-setuptools - python-testpath)) + "01afv4fkgrm8v9hiww3qymmx201b6z3f8lc4g6nzq7djappn581x")))) + (build-system pyproject-build-system) + (arguments + ;; XXX: No tests in PyPI and building from GitHub fails because of the + ;; lack of git metadata in the checkout. + (list #:tests? #f)) + (native-inputs (list python-flit-core)) + (propagated-inputs (list python-dunamai)) (home-page "https://github.com/flying-sheep/get_version") (synopsis "Version helper in the spirit of versioneer") (description -- cgit v1.3