summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-06-15 15:29:30 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-06-20 11:35:47 +0100
commita6b8d0793d5cef058add7efa4bc2abafcce6651d (patch)
tree90c98f6a062ee297b63789f6eae1156b0cbb8ad5 /gnu
parent352aeabf344db22a5433d783a1b7b2a7bec0e9ee (diff)
gnu: python-semver: Update to 3.0.4.
* gnu/packages/python-xyz.scm (python-semver): Update to 3.0.4. [arguments, build-system]: Switch to pyproject-build-system. [native-inputs]: Add python-pytest-cov, python-setuptools, python-wheel. Change-Id: I9df4affae751d9b5cf9424d7837bd06b6da95ca2 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm22
1 files changed, 8 insertions, 14 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 604802d8dc..90ae32dfdb 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -27687,27 +27687,21 @@ Time} values as well as an event scheduler.")
(define-public python-semver
(package
(name "python-semver")
- (version "2.9.0")
+ (version "3.0.4")
(source
(origin
(method url-fetch)
(uri (pypi-uri "semver" version))
(sha256
- (base32
- "183kg1rhzz3hqizvphkd8hlbf1zxfx8737zhfkmqzxi71jmdw7pd"))))
- (build-system python-build-system)
- (arguments
- `(#:phases (modify-phases %standard-phases
- (replace 'check
- (lambda _
- (delete-file "setup.cfg")
- (invoke "py.test"))))))
- (native-inputs
- (list python-pytest))
+ (base32 "00lnb1mpppgq041kwcbg405rqsi2mzl8dw1s0c8hmvd5hk2xiixg"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-pytest-cov python-setuptools
+ python-wheel))
(home-page "https://github.com/k-bx/python-semver")
(synopsis "Python helper for Semantic Versioning")
- (description "This package provides a Python library for
-@url{Semantic Versioning, http://semver.org/}.")
+ (description
+ "This package provides a Python library for @url{Semantic Versioning,
+http://semver.org/}.")
(license license:bsd-3)))
(define-public python-pyro4