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
This commit is contained in:
Vinicius Monego 2025-06-28 00:44:41 -03:00
parent 8508a6e65f
commit a6c21cd8c0
No known key found for this signature in database
GPG key ID: 637B0B138065B68A

View file

@ -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