guix_mirror_bot pushed a commit to branch master
in repository guix.
commit b746b971fb9c8f9006f6120f09964ca5f24f9a68
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Oct 28 15:08:18 2025 +0100
gnu: python-boltons: Update to 25.0.0.
* gnu/packages/python-xyz.scm (python-boltons): Update to 25.0.0.
[source]: Switch to git-fetch.
[build-system]: Switch to pyproject-build-system.
[native-inputs]: Add python-flit-core, python-pytest, python-setuptools.
Change-Id: I4f2f1feb385e5b6eb323ea2805ea6e240c8b5049
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9c3b6f36f3..d45ca8c0a6 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -30564,15 +30564,18 @@ library.")
(define-public python-boltons
(package
(name "python-boltons")
- (version "23.0.0")
+ (version "25.0.0")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "boltons" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mahmoud/boltons")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32
- "1c5lpqi74i55li0wvpyxnircj40na797x7447k53an2j54cafl4c"))))
- (build-system python-build-system)
+ (base32 "0j061hd1iwcyz1rvasprjwwgb39x6h36n1l3dw310ig3pzbr84wh"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-flit-core python-pytest python-setuptools))
(home-page "https://github.com/mahmoud/boltons")
(synopsis "Extensions to the Python standard library")
(description