guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 1496a16f156e53f1a3b32072cb86a78a854692d7
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Aug 10 01:30:45 2025 +0100
gnu: python-esptool: Update to 5.0.2.
* gnu/packages/engineering.scm (python-esptool): Update to 5.0.2.
[propagated-inputs]: Remove python-rich-click-next; add python-rich-click.
[native-inputs]: Remove python-wheel.
Change-Id: I3365176fbe02cb8bd2e190d1e584b91d27643b28
---
gnu/packages/engineering.scm | 9 ++++-----
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm
index 244a8023ca..9cb3cdfa63 100644
--- a/gnu/packages/engineering.scm
+++ b/gnu/packages/engineering.scm
@@ -2112,7 +2112,7 @@ multiple services and devices with hundreds of supported
integrations.")
(define-public python-esptool
(package
(name "python-esptool")
- (version "5.0.1")
+ (version "5.0.2")
(source
(origin
(method git-fetch)
@@ -2121,7 +2121,7 @@ multiple services and devices with hundreds of supported
integrations.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "04asqw6g4lhkz6fqn22wwk2wjq5q8c00m2k8wylksrc0v2f582i9"))))
+ (base32 "1wl75j6ncm5lahy9pzc38qivhaf9p42a2bijishdkwkw388fs6x1"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -2143,11 +2143,10 @@ multiple services and devices with hundreds of
supported integrations.")
python-pyserial
python-pyyaml
python-reedsolo
- python-rich-click-next))
+ python-rich-click))
(native-inputs (list python-pyelftools
python-pytest
- python-setuptools
- python-wheel))
+ python-setuptools))
(home-page "https://github.com/espressif/esptool")
(synopsis "Bootloader utility for Espressif ESP8266 & ESP32 chips")
(description