diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-03 14:05:02 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-05-24 10:14:57 +0100 |
| commit | 2de54f42ec0ff161aea61d70ef98bb760a2b295d (patch) | |
| tree | 00e2d17f69917261b58c75022462ef5d66cb1110 /gnu/packages | |
| parent | 6ba797481c1328f8ad734094039bead26ea8d25e (diff) | |
gnu: behave: Update to 1.3.3-0.43d0a93.
* gnu/packages/check.scm (behave): Update to
43d0a93240c0b25b0cbf59bdc196b74fb8a2353e commit.
[native-inputs]: Remove python-assertpy and python-mock; add
python-freezegun, python-charset-normalizer, and python-pytest-html.
Change-Id: Icf3d91ccaa4392da7c381a889ddf2ef0d0474fe0
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/check.scm | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 6df72d738df..8d8e29150b9 100644 --- a/gnu/packages/check.scm +++ b/gnu/packages/check.scm | |||
| @@ -3026,24 +3026,32 @@ possible to write plugins to add your own checks.") | |||
| 3026 | (define-public behave | 3026 | (define-public behave |
| 3027 | (package | 3027 | (package |
| 3028 | (name "behave") | 3028 | (name "behave") |
| 3029 | (version "1.3.3") | 3029 | ;; 1.3.3 (2025-09-04), the latest changes provide support for Python |
| 3030 | ;; 3.12+; move back to git tag when released. | ||
| 3031 | (properties '((commit . "43d0a93240c0b25b0cbf59bdc196b74fb8a2353e") | ||
| 3032 | (revision . "0"))) | ||
| 3033 | (version (git-version "1.3.3" | ||
| 3034 | (assoc-ref properties 'revision) | ||
| 3035 | (assoc-ref properties 'commit))) | ||
| 3030 | (source | 3036 | (source |
| 3031 | (origin | 3037 | (origin |
| 3032 | (method git-fetch) | 3038 | (method git-fetch) |
| 3033 | (uri (git-reference | 3039 | (uri (git-reference |
| 3034 | (url "https://github.com/behave/behave") | 3040 | (url "https://github.com/behave/behave") |
| 3035 | (commit (string-append "v" version)))) | 3041 | (commit (assoc-ref properties 'commit)))) |
| 3036 | (file-name (git-file-name name version)) | 3042 | (file-name (git-file-name name version)) |
| 3037 | (sha256 | 3043 | (sha256 |
| 3038 | (base32 "1fxj51kailsdakqi7qbw700k258n7r3lv75mgxs45ld5xh2jfyxh")))) | 3044 | (base32 "05671jf7scpgqr8chzgs9bxidvf12nlkqqiqxa5qwmykqfvc8nk4")))) |
| 3039 | (build-system pyproject-build-system) | 3045 | (build-system pyproject-build-system) |
| 3046 | ;; tests: 1638 passed, 3 skipped, 2 xfailed | ||
| 3040 | (native-inputs | 3047 | (native-inputs |
| 3041 | (list python-assertpy | 3048 | (list python-chardet |
| 3042 | python-chardet | 3049 | python-freezegun |
| 3043 | python-mock | 3050 | python-charset-normalizer |
| 3044 | python-path | 3051 | python-path |
| 3045 | python-pyhamcrest | 3052 | python-pyhamcrest |
| 3046 | python-pytest | 3053 | python-pytest |
| 3054 | python-pytest-html | ||
| 3047 | python-setuptools)) | 3055 | python-setuptools)) |
| 3048 | (propagated-inputs | 3056 | (propagated-inputs |
| 3049 | (list python-colorama | 3057 | (list python-colorama |
