diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 08:45:40 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:07 +0200 |
| commit | 96012e341cb3e79d8b24fef6d1f166f94dbdcf9d (patch) | |
| tree | da759ec2e72e78992a33ae753446ee5d2d769921 /gnu/packages/python-xyz.scm | |
| parent | 2490649d0d52bc57a34733a5889de64fbe8b9d55 (diff) | |
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
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ef67fd7e4d..7a8cbedcfc 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -17895,20 +17895,25 @@ asyncio.") (define-public python-pytest-black (package (name "python-pytest-black") - (version "0.3.12") + (version "0.6.0") (source (origin (method url-fetch) - (uri (pypi-uri "pytest-black" version)) + (uri (pypi-uri "pytest_black" version)) (sha256 (base32 - "19bmbcnaq02md8nnj6pywri3vps8sxnhysbfy386qkbn9w09ncqx")))) - (build-system python-build-system) - (propagated-inputs - (list python-pytest python-black python-toml)) + "04dmhv8dzh356qdxz6hrwfz3nk3mlc9shicgpns5r03rydap9dzc")))) + (build-system pyproject-build-system) (native-inputs - (list python-setuptools-scm)) - (home-page "https://github.com/shopkeep/pytest-black") + (list python-setuptools + 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") (description "This package provides a pytest plugin to enable format checking with the |
