gnu: python-re-assert: Switch to pyproject-build-system.

* gnu/packages/python-check.scm (python-re-assert)
  [build-system]: Use pyproject.
  [arguments]: Drop them.
  [native-inputs]: Remove python-covdefaults and python-coverage; add
  python-setuptools.

Change-Id: Ifc6f24e45196988cf3741ce2cf7b489dbb0a13f3
This commit is contained in:
Sharlatan Hellseher 2025-07-31 14:35:17 +01:00
parent 260269a0d4
commit aae4b50f43
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -3533,15 +3533,9 @@ libraries.")
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 "1rssq4wpqmx1c17hjfx5l3sn3zmnlz9jffddiqrs4f6h7m6cadai")))) (base32 "1rssq4wpqmx1c17hjfx5l3sn3zmnlz9jffddiqrs4f6h7m6cadai"))))
(build-system python-build-system) (build-system pyproject-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _
(invoke "pytest" "-vv"))))))
(native-inputs (native-inputs
(list python-covdefaults python-coverage python-pytest)) (list python-pytest python-setuptools))
(propagated-inputs (propagated-inputs
(list python-regex)) (list python-regex))
(home-page "https://github.com/asottile/re-assert") (home-page "https://github.com/asottile/re-assert")