[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#48842] [PATCH 1/6] gnu: Add python-pytest-datadir.
From: |
Vinicius Monego |
Subject: |
[bug#48842] [PATCH 1/6] gnu: Add python-pytest-datadir. |
Date: |
Sat, 5 Jun 2021 01:46:50 +0000 |
* gnu/packages/python-check.scm (python-pytest-datadir): New variable.
---
gnu/packages/python-check.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 1206dda5c4..abcbb6d805 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -882,6 +882,36 @@ framework.")
for the @code{pytest} framework.")
(license license:expat)))
+(define-public python-pytest-datadir
+ (package
+ (name "python-pytest-datadir")
+ (version "1.3.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pytest-datadir" version))
+ (sha256
+ (base32 "066bg6wlzgq2pqnjp73dfrcmk8951xw3aqcxa3p1axgqimrixbyk"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key inputs outputs tests? #:allow-other-keys)
+ (when tests?
+ (add-installed-pythonpath inputs outputs)
+ (invoke "python" "-m" "pytest")))))))
+ (propagated-inputs
+ `(("python-pathlib2" ,python-pathlib2)))
+ (native-inputs
+ `(("python-pytest" ,python-pytest)
+ ("python-setuptools-scm" ,python-setuptools-scm)))
+ (home-page "https://github.com/gabrielcnr/pytest-datadir")
+ (synopsis "Pytest plugin for test data directories and files")
+ (description
+ "Pytest plugin for test data directories and files.")
+ (license license:expat)))
+
(define-public python-pytest-benchmark
(package
(name "python-pytest-benchmark")
--
2.31.1
- [bug#48842] [PATCH 0/6] gnu: Add python-myst-parser., Vinicius Monego, 2021/06/04
- [bug#48842] [PATCH 1/6] gnu: Add python-pytest-datadir.,
Vinicius Monego <=
- [bug#48842] [PATCH 2/6] gnu: Add python-pytest-regressions., Vinicius Monego, 2021/06/04
- [bug#48842] [PATCH 3/6] gnu: Add python-linkify-it-py., Vinicius Monego, 2021/06/04
- [bug#48842] [PATCH 5/6] gnu: Add python-mdit-py-plugins., Vinicius Monego, 2021/06/04
- [bug#48842] [PATCH 4/6] gnu: Add python-markdown-it-py., Vinicius Monego, 2021/06/04
- [bug#48842] [PATCH 6/6] gnu: Add python-myst-parser., Vinicius Monego, 2021/06/04
- [bug#48842] [PATCH 1/6] gnu: Add python-pytest-datadir., Xinglu Chen, 2021/06/05
- [bug#48842] [PATCH v2 1/7] gnu: Add python-pytest-datadir., Vinicius Monego, 2021/06/07