mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add python-pytest-virtualenv.
* gnu/packages/python-check.scm (python-pytest-virtualenv): New variable.
This commit is contained in:
parent
7d5ffecba5
commit
05b3dcbe32
1 changed files with 27 additions and 0 deletions
|
@ -213,3 +213,30 @@ (define-public python-pytest-fixture-config
|
|||
"This package provides fixture configuration utilities for the py.test
|
||||
testing framework.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public python-pytest-virtualenv
|
||||
(package
|
||||
(name "python-pytest-virtualenv")
|
||||
(version "1.7.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "pytest-virtualenv" version))
|
||||
(sha256
|
||||
(base32
|
||||
"03w2zz3crblj1p6i8nq17946hbn3zqp9z7cfnifw47hi4a4fww12"))))
|
||||
(build-system python-build-system)
|
||||
(arguments '(#:tests? #f)) ; one test fails; can't find virtualenv
|
||||
(propagated-inputs
|
||||
`(("python-virtualenv" ,python-virtualenv)
|
||||
("python-pytest-shutil" ,python-pytest-shutil)
|
||||
("python-pytest-fixture-config" ,python-pytest-fixture-config)))
|
||||
(native-inputs
|
||||
`(("python-mock" ,python-mock)
|
||||
("python-pytest" ,python-pytest)
|
||||
("python-setuptools-git" ,python-setuptools-git)))
|
||||
(home-page "https://github.com/manahl/pytest-plugins")
|
||||
(synopsis "Virtualenv fixture for py.test")
|
||||
(description "This package provides a virtualenv fixture for the py.test
|
||||
framework.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue