summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorVinicius Monego <monego@posteo.net>2025-06-28 00:44:41 -0300
committerVinicius Monego <monego@posteo.net>2025-06-29 00:04:43 -0300
commita6c21cd8c0b442c1d2ebb6c099a0c0bc103bd97b (patch)
tree15c83a33ec1e48e2cb8c7f9ab66bef056cb655d0 /gnu/packages/python-xyz.scm
parent8508a6e65fbd4dd74c22f4df2920fa461fe9abd3 (diff)
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm19
1 files changed, 9 insertions, 10 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index acd57d35b9..43242e2cee 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