~ruther/guix-local

94aaf932c392e15d0b4bd26a8d0e5ce5bb3b3f24 — Nicolas Graves 7 months ago dfaa1ef
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 <sharlatanus@gmail.com>
1 files changed, 15 insertions(+), 16 deletions(-)

M gnu/packages/check.scm
M gnu/packages/check.scm => gnu/packages/check.scm +15 -16
@@ 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))