diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-29 00:10:13 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-29 00:12:25 +0100 |
| commit | 2135ac63e111853b40dbdfab423b7233fda6d474 (patch) | |
| tree | ff0e00e251bb7369225b3d4371f856ecc102b359 /gnu | |
| parent | 414cdf08b85aa316a0c6e7529929c08268f812f4 (diff) | |
gnu: python-flufl-bounce: Switch to pyproject, fix build.
* gnu/packages/python-xyz.scm (python-flufl-bounce):
[build-system]: Switch to pyporject-build-system.
[native-inputs]: Add python-setuptools.
Change-Id: I4d057a611bbad330ec4e0a94693acee6da1684a7
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 238b0dc1fb1..1a42aa60f29 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -34102,6 +34102,8 @@ to minimize duplication of information across files. The format supports schema validation.") (license license:lgpl3))) +;; XXX: Not maintained since 2021, there is no git available as seen in +;; <https://pypi.org/project/flufl.bounce>. (define-public python-flufl-bounce (package (name "python-flufl-bounce") @@ -34113,7 +34115,7 @@ validation.") (sha256 (base32 "0c9qc2l47lyqnpwskp6vvi7m3jqh6hx42v6d35dgxh3fjzmlll15")))) - (build-system python-build-system) + (build-system pyproject-build-system) (arguments (list #:phases #~(modify-phases %standard-phases @@ -34126,7 +34128,7 @@ validation.") (propagated-inputs (list python-atpublic python-zope-interface)) (native-inputs - (list python-flufl-testing python-nose2)) + (list python-flufl-testing python-nose2 python-setuptools)) (home-page "https://fluflbounce.readthedocs.io/en/latest/") (synopsis "Email bounce detectors") (description "The @code{flufl.bounce} library provides a set of heuristics |
