guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit ffa9338ca34359d461e877ebdd577d41fc534f97
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Thu Jul 31 14:45:34 2025 +0100

    gnu: python-rfc3339-validator: Switch to pyproject-build-system.
    
    * gnu/packages/python-xyz.scm (python-rfc3339-validator):
      [build-system]: Use pyproject.
      [native-inputs]: Remove python-hypothesis and python-pytest-runner;
      add python-setuptools.
    
    Change-Id: I94807d4307e1896d0493003da762ed3139b5ac8f
---
 gnu/packages/python-xyz.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2483275130..054fc6f937 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -37009,12 +37009,13 @@ statements in OFX files.")
        (uri (pypi-uri "rfc3339_validator" version))
        (sha256
         (base32 "0srg0b89aikzinw72s433994k5gv5lfyarq1adhas11kz6yjm2hk"))))
-    (build-system python-build-system)
-    (native-inputs (list python-hypothesis
-                         python-pytest
-                         python-pytest-runner
-                         python-strict-rfc3339))
-    (propagated-inputs (list python-six))
+    (build-system pyproject-build-system)
+    (native-inputs
+     (list python-pytest
+           python-setuptools
+           python-strict-rfc3339))
+    (propagated-inputs
+     (list python-six))
     (home-page "https://github.com/naimetti/rfc3339-validator";)
     (synopsis "Python RFC3339 validator")
     (description "This package provides a pure Python RFC3339 validator.")

Reply via email to