diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-04 21:42:21 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-17 08:59:27 +0100 |
commit | 93f0222f428eb0597bbb89edab2f932ee4dbe245 (patch) | |
tree | 73db069c3c7a700e2ddce9685a7eec477bb3398f | |
parent | d90a598036f97dfc73c9e590edf7decaee53e7e4 (diff) |
gnu: python-validate-email: Switch to pyproject-build-system.
* gnu/packages/python-xyz.scm (python-validate-email):
[build-system]: Use pyproject.
[native-inputs]: Add python-setuptools.
Change-Id: I2b33349f1e940353a1bbda564cf07b6c9438b33f
-rw-r--r-- | gnu/packages/python-xyz.scm | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 6d08811b3b..b9ce8f9aa4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27405,12 +27405,14 @@ input.") (version "1.3") (source (origin - (method url-fetch) - (uri (pypi-uri "validate_email" version)) - (sha256 - (base32 - "1bxffaf5yz2cph8ki55vdvdypbwkvn2xr1firlcy62vqbzf1jivq")))) - (build-system python-build-system) + (method url-fetch) + (uri (pypi-uri "validate_email" version)) + (sha256 + (base32 "1bxffaf5yz2cph8ki55vdvdypbwkvn2xr1firlcy62vqbzf1jivq")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;no tests in PyPI or Git + (native-inputs + (list python-setuptools)) (home-page "https://github.com/syrusakbary/validate_email") (synopsis "Verifies if an email address is valid and really exists") (description "@code{validate_email} can be used to verify if an email |