sharlatan pushed a commit to branch python-team
in repository guix.
commit f6db69411ba77d30c25783145b8539e6c24d2283
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jan 21 08:51:28 2025 +0000
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
---
gnu/packages/python-check.scm | 28 ++++++++++++++++++++++++++++
gnu/packages/python-xyz.scm | 28 ----------------------------
2 files changed, 28 insertions(+), 28 deletions(-)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index eedbec89f9..46c6326c49 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -185,6 +185,34 @@ updating the value you want to compare with. The value is
converted with
@code{snapshot()} function.")
(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-robotframework-jsonlibrary
(package
(name "python-robotframework-jsonlibrary")
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 4426093d6a..d8756da5cb 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17196,34 +17196,6 @@ asyncio.")
(description "Snuggs are S-expressions for Numpy.")
(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
(package
(name "python-geojson")