gnu: python-pytest-black: Move to python-check.

* gnu/packages/python-xyz.scm (python-pytest-black): Move from here ...
* gnu/packages/python-check.scm: ... to here.

Change-Id: I63b64e0e09173312bb6ddea316fe323801cb1176
This commit is contained in:
Sharlatan Hellseher 2025-01-21 08:51:28 +00:00 committed by Andreas Enge
parent 96012e341c
commit 79904458f9
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3
2 changed files with 28 additions and 28 deletions

View file

@ -288,6 +288,34 @@ Avocado machine readable outputs this one is streamlined (per test results).
@end table") @end table")
(license license:gpl2))) ;some files are under GPLv2 only (license license:gpl2))) ;some files are under GPLv2 only
(define-public python-pytest-black
(package
(name "python-pytest-black")
(version "0.6.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pytest_black" version))
(sha256
(base32
"04dmhv8dzh356qdxz6hrwfz3nk3mlc9shicgpns5r03rydap9dzc"))))
(build-system pyproject-build-system)
(native-inputs
(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
Python code formatter \"black\".")
(license license:expat)))
(define-public python-beartype (define-public python-beartype
(package (package
(name "python-beartype") (name "python-beartype")

View file

@ -17892,34 +17892,6 @@ asyncio.")
(description "Snuggs are S-expressions for Numpy.") (description "Snuggs are S-expressions for Numpy.")
(license license:expat))) (license license:expat)))
(define-public python-pytest-black
(package
(name "python-pytest-black")
(version "0.6.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pytest_black" version))
(sha256
(base32
"04dmhv8dzh356qdxz6hrwfz3nk3mlc9shicgpns5r03rydap9dzc"))))
(build-system pyproject-build-system)
(native-inputs
(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
Python code formatter \"black\".")
(license license:expat)))
(define-public python-geojson (define-public python-geojson
(package (package
(name "python-geojson") (name "python-geojson")