This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 1b1387c44a Revert "gnu: python-dnspython: Only include supported
inputs."
1b1387c44a is described below
commit 1b1387c44a3a6107e7a9a232e0ec207c98acbf15
Author: Efraim Flashner <[email protected]>
AuthorDate: Tue Jan 21 10:40:42 2025 +0200
Revert "gnu: python-dnspython: Only include supported inputs."
This reverts commit 1b88114ff67cdbb3253c3e44e16d2f99acc7a588.
This commit dropped a package by accident and causes rebuilds on all
architectures instead of just enabling more architectures.
---
gnu/packages/python-xyz.scm | 27 ++++++++-------------------
1 file changed, 8 insertions(+), 19 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 6be6380499..a93ce13593 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14,7 +14,7 @@
;;; Copyright © 2015, 2016, 2017, 2019, 2022 Leo Famulari <[email protected]>
;;; Copyright © 2015, 2017 Ben Woodcroft <[email protected]>
;;; Copyright © 2015, 2016 Erik Edrosa <[email protected]>
-;;; Copyright © 2015-2025 Efraim Flashner <[email protected]>
+;;; Copyright © 2015-2024 Efraim Flashner <[email protected]>
;;; Copyright © 2015, 2017, 2020 Kyle Meyer <[email protected]>
;;; Copyright © 2015, 2016 Chris Marusich <[email protected]>
;;; Copyright © 2016 Danny Milosavljevic <[email protected]>
@@ -23191,24 +23191,13 @@ until the object is actually required, and caches the
result of said call.")
(list python-hatchling
python-pytest))
(propagated-inputs
- ;; According to pyproject.toml all these are technically optional.
- (append
- (let ((if-supported
- (lambda (package)
- (if (and (not (%current-target-system))
- (member (%current-system)
- (package-transitive-supported-systems
package)))
- (list package)
- '()))))
- ;; DNSSEC
- (if-supported python-cryptography)
- ;; DNS over HTTPS
- (if-supported python-h2)
- (if-supported python-httpcore)
- (if-supported python-httpx)
- ;; DNS over Quic
- (if-supported python-trio))
- (list python-idna)))
+ (list python-cryptography
+ python-aioquic
+ python-h2
+ python-httpcore
+ python-httpx
+ python-idna
+ python-trio))
(home-page "https://www.dnspython.org")
(synopsis "DNS toolkit for Python")
(description