sharlatan pushed a commit to branch python-team
in repository guix.
commit f7ebe89d2523a847c2e2948ffe9b9a4703aff668
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Nov 6 17:12:45 2024 +0000
gnu: python-behave-web-api: Update to 2.0.1.
* gnu/packages/check.scm (python-behave-web-api): Update to 2.0.1.
[native-inputs]: Add python-pytest, python-setuptools, and python-wheel.
Change-Id: If0202516a578a8fb90470dcc1a8d58c901f16169
---
gnu/packages/check.scm | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 6bc1309035..e339cb2583 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -3408,15 +3408,15 @@ tests written in a natural language style, backed up by
Python code.")
(define-public python-behave-web-api
(package
(name "python-behave-web-api")
- (version "1.0.6")
+ (version "2.0.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "behave-web-api" version))
(sha256
(base32
- "03kpq2xsy1gab3jy0dccbxlsg7vwfy4lagss0qldwmx3xz6b3i19"))))
- (build-system python-build-system)
+ "04p5sp6wck3mafj634w1fpvfhxm170l5q3hfb9d06pi71ql606n6"))))
+ (build-system pyproject-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
@@ -3426,6 +3426,10 @@ tests written in a natural language style, backed up by
Python code.")
(("'wheel'") "") ; We don't use it.
(("'ordereddict==1.1'") "")) ; Python >= 2.7 has it built-in.
#t)))))
+ (native-inputs
+ (list python-pytest
+ python-setuptools
+ python-wheel))
(propagated-inputs
(list behave python-requests))
(home-page "https://github.com/jefersondaniel/behave-web-api")