From 2b3539e3297b91b5d6f1c951134d3fbcc80a0ef4 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Wed, 6 Nov 2024 17:12:45 +0000 Subject: 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(-) (limited to 'gnu') diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 654306c41c..95afb11e22 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") -- cgit v1.2.3 t name='qt'>
path: root/gnu/installer/record.scm
AgeCommit message (Expand)Author
2022-11-15installer: Report known-unsupported PCI devices....* gnu/installer/hardware.scm: New file. * gnu/local.mk (INSTALLER_MODULES): Add it. * po/guix/POTFILES.in: Add it. * gnu/installer.scm (installer-steps): Pass #:pci-database to the 'welcome' step procedure. * gnu/installer/newt.scm (welcome-page): Add #:pci-database and pass it to 'run-welcome-page'. * gnu/installer/newt/welcome.scm (check-hardware-support): Add #:pci-database. Enumerate unsupported PCI devices and run an error page when unsupported devices are found. (run-welcome-page): Add #:pci-database and pass it to 'check-hardware-support' and to the recursive call. * gnu/installer/record.scm (<installer>)[welcome-page]: Adjust comment. * doc/guix.texi (Hardware Considerations): Mention it. Ludovic Courtès