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
This commit is contained in:
Sharlatan Hellseher 2025-07-31 14:45:34 +01:00
parent ae99af25d6
commit 448a8d66fc
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -37052,12 +37052,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.")