mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-04 09:16:31 +01:00
gnu: Add python-pytest-enabler-bootstrap.
* gnu/packages/check.scm (python-pytest-enabler-bootstrap): New variable.
This commit is contained in:
parent
3ce8459aa7
commit
e96c2dcabf
1 changed files with 25 additions and 0 deletions
|
@ -2200,6 +2200,31 @@ (define-public python-lit
|
||||||
failures.")
|
failures.")
|
||||||
(license license:ncsa)))
|
(license license:ncsa)))
|
||||||
|
|
||||||
|
;;; This is marked as a bootstrap package because it propagates bootstrapped
|
||||||
|
;;; versions of jaraco-context and jaraco-functools.
|
||||||
|
(define-public python-pytest-enabler-bootstrap
|
||||||
|
(hidden-package
|
||||||
|
(package
|
||||||
|
(name "python-pytest-enabler-bootstrap")
|
||||||
|
(version "1.2.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "pytest-enabler" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "023ymm0r2gpn5q7aikvx567s507j0zk46w41w6gxb69c688zgs73"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(arguments (list #:tests? #f))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-jaraco-context-bootstrap
|
||||||
|
python-jaraco-functools-bootstrap
|
||||||
|
python-toml))
|
||||||
|
(native-inputs (list python-setuptools-scm))
|
||||||
|
(home-page "https://github.com/jaraco/pytest-enabler")
|
||||||
|
(synopsis "Enable installed pytest plugins")
|
||||||
|
(description "Enable installed pytest plugins")
|
||||||
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public python-pytest-freezegun
|
(define-public python-pytest-freezegun
|
||||||
(package
|
(package
|
||||||
(name "python-pytest-freezegun")
|
(name "python-pytest-freezegun")
|
||||||
|
|
Loading…
Reference in a new issue