gnu: python-pytest-filter-subpackage: Update to 0.1.2.
* gnu/packages/python-check.scm (python-pytest-filter-subpackage): Update to 0.1.2. [build-system]: Use pyproject-build-system. [arguments]: Drop no more required phases. [native-inputs]: Add python-setuptools-scm. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
5a70b9b924
commit
735513e93e
1 changed files with 7 additions and 15 deletions
|
@ -633,27 +633,19 @@ for interactively selecting and running Pytest tests.")
|
||||||
(define-public python-pytest-filter-subpackage
|
(define-public python-pytest-filter-subpackage
|
||||||
(package
|
(package
|
||||||
(name "python-pytest-filter-subpackage")
|
(name "python-pytest-filter-subpackage")
|
||||||
(version "0.1.1")
|
(version "0.1.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "pytest-filter-subpackage" version))
|
(uri (pypi-uri "pytest-filter-subpackage" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1s4s2kd31yc65rfvl4xhy8xx806xhy59kc7668h6b6wq88xgrn5p"))))
|
(base32 "10hpl3f7g2bm29lakmp8492b7lr0dp90khfni12m4gl02xks7bhz"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(arguments
|
|
||||||
'(;; One test is failing. There's an issue reported upstream. See
|
|
||||||
;; https://github.com/astropy/pytest-filter-subpackage/issues/3.
|
|
||||||
;; Disable it for now.
|
|
||||||
#:phases
|
|
||||||
(modify-phases %standard-phases
|
|
||||||
(replace 'check
|
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
||||||
;; Make the installed plugin discoverable by Pytest.
|
|
||||||
(add-installed-pythonpath inputs outputs)
|
|
||||||
(invoke "pytest" "-vv" "-k" "not test_with_rst"))))))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-pytest python-pytest-cov python-pytest-doctestplus))
|
(list python-pytest
|
||||||
|
python-pytest-cov
|
||||||
|
python-pytest-doctestplus
|
||||||
|
python-setuptools-scm))
|
||||||
(home-page "https://github.com/astropy/pytest-filter-subpackage")
|
(home-page "https://github.com/astropy/pytest-filter-subpackage")
|
||||||
(synopsis "Pytest plugin for filtering based on sub-packages")
|
(synopsis "Pytest plugin for filtering based on sub-packages")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue