From 94aaf932c392e15d0b4bd26a8d0e5ce5bb3b3f24 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Sun, 19 Oct 2025 15:52:40 +0200 Subject: [PATCH] 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 --- 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 6a4baf0781f51c967c66891f50fd0d3f1f014101..822a3da21917e3f8fdeb8ae06ac79a2372e98e4b 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))