mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-pytest-black: Update to 0.6.0.
Project maintainer has been changed, see <https://github.com/shopkeep/pytest-black/issues/70>. * gnu/packages/python-xyz.scm (python-pytest-black): Update to 0.6.0. [source] <uri>: Adjust it as PyPI archive name has been changed. [build-system]: Swap to pyproject-build-system. [native-inputs]: Remove python-setuptools-scm, add python-setuptools and python-wheel. [home-page]: Fix it. Change-Id: If2c6eb1edebfbe95207340cbd569668364da7a73
This commit is contained in:
parent
2490649d0d
commit
96012e341c
1 changed files with 13 additions and 8 deletions
|
@ -17895,20 +17895,25 @@ asyncio.")
|
||||||
(define-public python-pytest-black
|
(define-public python-pytest-black
|
||||||
(package
|
(package
|
||||||
(name "python-pytest-black")
|
(name "python-pytest-black")
|
||||||
(version "0.3.12")
|
(version "0.6.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (pypi-uri "pytest-black" version))
|
(uri (pypi-uri "pytest_black" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"19bmbcnaq02md8nnj6pywri3vps8sxnhysbfy386qkbn9w09ncqx"))))
|
"04dmhv8dzh356qdxz6hrwfz3nk3mlc9shicgpns5r03rydap9dzc"))))
|
||||||
(build-system python-build-system)
|
(build-system pyproject-build-system)
|
||||||
(propagated-inputs
|
|
||||||
(list python-pytest python-black python-toml))
|
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-setuptools-scm))
|
(list python-setuptools
|
||||||
(home-page "https://github.com/shopkeep/pytest-black")
|
python-wheel))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-black
|
||||||
|
python-pytest
|
||||||
|
python-toml))
|
||||||
|
;; Project maintenance has been changed, see
|
||||||
|
;; <https://github.com/shopkeep/pytest-black/issues/70>.
|
||||||
|
(home-page "https://github.com/coherent-oss/pytest-black")
|
||||||
(synopsis "Pytest plugin to enable format checking with black")
|
(synopsis "Pytest plugin to enable format checking with black")
|
||||||
(description
|
(description
|
||||||
"This package provides a pytest plugin to enable format checking with the
|
"This package provides a pytest plugin to enable format checking with the
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue