guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 2a77559bcb02a569719e1fb2df5a156f8f0bb6e1
Author: Hugo Buddelmeijer <[email protected]>
AuthorDate: Sun Jul 12 14:23:26 2026 +0200
gnu: python-throttler: Update to 1.2.3.
* gnu/packages/python-xyz.scm (python-throttler): Update to 1.2.3.
[native-inputs]: Remove python-codecov, python-flake8, and python-wheel.
Relates-to: guix/guix!9885
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 484a1a29a6..0350962537 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -39056,24 +39056,22 @@ approach.")
(define-public python-throttler
(package
(name "python-throttler")
- (version "1.2.2")
+ (version "1.2.3")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/uburuntu/throttler")
(commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "1gn21x0zkm7rr7qijlz7nvw7z0mm1j2r0r2lslg7wln1z36gjkbw"))))
+ (base32 "1k0a3hxih2qk3fxljcwbbpa723bshrvcqgz2lxgll32g1lfa3hnd"))))
(build-system pyproject-build-system)
(native-inputs
(list python-aiohttp
- python-codecov
- python-flake8
python-pytest
python-pytest-asyncio
- python-setuptools
- python-wheel))
+ python-setuptools))
(home-page "https://github.com/uburuntu/throttler")
(synopsis "Throttling with asyncio support")
(description