guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#55831] [PATCH] gnu: python-semantic-version: Update to 2.10.0.


From: peter
Subject: [bug#55831] [PATCH] gnu: python-semantic-version: Update to 2.10.0.
Date: Tue, 7 Jun 2022 17:02:22 -0400

From: Peter Polidoro <peter@polidoro.io>

* gnu/packages/python-xyz.scm (python-semantic-version): Update to 2.10.0.
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++--
 1 file changed, 20 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 94948fe4e2..3f19fb363f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1761,15 +1761,33 @@ (define-public python-filelock
 (define-public python-semantic-version
   (package
     (name "python-semantic-version")
-    (version "2.8.5")
+    (version "2.10.0")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "semantic_version" version))
        (sha256
         (base32
-         "0m4avx8zdkzc7qglv5zlr54g8yna5vl098drg5396ql7aph2vjyj"))))
+         "0704smz9k6hdd6i5xh0xf0sk47kannjb77abilvvp34r6v9vdaxx"))))
     (build-system python-build-system)
+    (arguments
+     `(#:phases
+       (modify-phases %standard-phases
+         (replace 'check
+           (lambda* (#:key tests? inputs outputs #:allow-other-keys)
+             (when tests?
+               ;; Skip the only failing test "test_django" because settings
+               ;; are not configured.
+               (invoke "pytest" "-vv" "-k" "not test_django")))))))
+    (native-inputs (list python-check-manifest
+                         python-colorama
+                         python-coverage
+                         python-django
+                         python-flake8
+                         python-nose2
+                         python-readme-renderer
+                         python-tox
+                         python-wheel))
     (home-page "https://github.com/rbarrois/python-semanticversion";)
     (synopsis "Semantic versioning module for Python")
     (description
-- 
2.36.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]