guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 94aaf932c392e15d0b4bd26a8d0e5ce5bb3b3f24
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Oct 19 15:52:40 2025 +0200

    gnu: behave: Update to 1.3.3.
    
    * gnu/packages/check.scm (behave): Update to 1.3.3.
    [native-inputs]: Add python-chardet, python-wheel.
    [propagated-inputs]: Add python-cucumber-expressions.
    
    Change-Id: Iefe1df298f9b658f08bf5d5af691236644af10fe
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/check.scm | 31 +++++++++++++++----------------
 1 file changed, 15 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 6a4baf0781..822a3da219 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -3093,30 +3093,29 @@ backported from Python 2.7 for Python 2.4+.")
 (define-public behave
   (package
     (name "behave")
-    ;; The 1.2.6 release from 2018 has several problems with newer Python
-    ;; versions, so we package a recent snapshot.
-    (version "1.2.7.dev5")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/behave/behave";)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "14162pclfvy4wy2az4v9gkgb3v0b338zxrb2ikqcqifckrmk8nhv"))))
+    (version "1.3.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/behave/behave";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1fxj51kailsdakqi7qbw700k258n7r3lv75mgxs45ld5xh2jfyxh"))))
     (build-system pyproject-build-system)
     (native-inputs
-     (list python-mock
-           python-assertpy
+     (list python-assertpy
+           python-chardet
+           python-mock
            python-path
            python-pyhamcrest
            python-pytest
            python-pytest-html
-           python-setuptools
-           python-wheel))
+           python-setuptools))
     (propagated-inputs
      (list python-colorama
+           python-cucumber-expressions
            python-cucumber-tag-expressions
            python-parse
            python-parse-type))

Reply via email to