summaryrefslogtreecommitdiff
path: root/gnu/packages/python-check.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <ricardo.wurmus@mdc-berlin.de>2019-06-25 12:03:23 +0200
committerRicardo Wurmus <rekado@elephly.net>2019-06-26 16:24:58 +0200
commit7d5ffecba54c08e0fd5a492b3da67d184eb78aa9 (patch)
treeae1764b2076bbbbc3b26a7f2ccd2c52e49377685 /gnu/packages/python-check.scm
parent21e2c559450ba2076b50a6a8158db22a6322f57c (diff)
gnu: Add python-pytest-fixture-config.
* gnu/packages/python-check.scm (python-pytest-fixture-config): New variable.
Diffstat (limited to 'gnu/packages/python-check.scm')
-rw-r--r--gnu/packages/python-check.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index d3f85207323..70140ded696 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -191,3 +191,25 @@ compliance.")
191 "This package provides assorted shell and environment tools for the 191 "This package provides assorted shell and environment tools for the
192py.test testing framework.") 192py.test testing framework.")
193 (license license:expat))) 193 (license license:expat)))
194
195(define-public python-pytest-fixture-config
196 (package
197 (name "python-pytest-fixture-config")
198 (version "1.7.0")
199 (source
200 (origin
201 (method url-fetch)
202 (uri (pypi-uri "pytest-fixture-config" version))
203 (sha256
204 (base32
205 "13i1qpz22w3x4dmw8vih5jdnbqfqvl7jiqs0dg764s0zf8bp98a1"))))
206 (build-system python-build-system)
207 (native-inputs
208 `(("python-pytest" ,python-pytest)
209 ("python-setuptools-git" ,python-setuptools-git)))
210 (home-page "https://github.com/manahl/pytest-plugins")
211 (synopsis "Fixture configuration utils for py.test")
212 (description
213 "This package provides fixture configuration utilities for the py.test
214testing framework.")
215 (license license:expat)))