mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add python-pytest-tornado5.
* gnu/packages/check.scm (python-pytest-tornado5): New variable. Change-Id: I9843e91d750bf17128eb6f566b8dbb5cbc0d8278 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
parent
3cf199dbcf
commit
c2f5d0f7d8
1 changed files with 24 additions and 0 deletions
|
@ -48,6 +48,7 @@
|
||||||
;;; Copyright © 2023 Reza Housseini <reza@housseini.me>
|
;;; Copyright © 2023 Reza Housseini <reza@housseini.me>
|
||||||
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
|
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
|
||||||
;;; Copyright © 2023 Troy Figiel <troy@troyfigiel.com>
|
;;; Copyright © 2023 Troy Figiel <troy@troyfigiel.com>
|
||||||
|
;;; Copyright © 2024 Giacomo Leidi <goodoldpaul@autistici.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -3503,6 +3504,29 @@ (define-public python-pytest-regressions
|
||||||
that can be used to verify that future runs produce the same data.")
|
that can be used to verify that future runs produce the same data.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-pytest-tornado5
|
||||||
|
(package
|
||||||
|
(name "python-pytest-tornado5")
|
||||||
|
(version "2.0.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "pytest-tornado5" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0qb62jw2w0xr6y942yp0qxiy755bismjfpnxaxjjm05gy2pymr8d"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
;; Tests require pytest < 6
|
||||||
|
(list #:tests? #f))
|
||||||
|
(propagated-inputs (list python-pytest python-tornado))
|
||||||
|
(home-page "https://github.com/vidartf/pytest-tornado")
|
||||||
|
(synopsis
|
||||||
|
"Fixtures and markers to simplify testing of Tornado applications")
|
||||||
|
(description
|
||||||
|
"This package provides a @code{py.test} plugin supplying fixtures and
|
||||||
|
markers to simplify testing of asynchronous tornado applications.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public guile-proba
|
(define-public guile-proba
|
||||||
(package
|
(package
|
||||||
(name "guile-proba")
|
(name "guile-proba")
|
||||||
|
|
Loading…
Reference in a new issue