guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit c900135be64b12987fc1c516832d9f0c151dbabc
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Mar 13 22:57:32 2026 +0000
gnu: python-pathspec: Update to 1.0.4.
* gnu/packages/python-build.scm (python-pathspec): Update to 1.0.4.
[source]: Switch to git-fetch.
[native-inputs]: Remove python-setuptools-bootstrap; add
python-packaging-bootstrap.
Change-Id: I02bab3eab782a735bd22f34e9667748c393c3fdf
---
gnu/packages/python-build.scm | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 1323916a5d..e44acf853d 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -237,18 +237,21 @@ invoked on those path objects directly.")
(define-public python-pathspec
(package
(name "python-pathspec")
- (version "0.12.1")
+ (version "1.0.4")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "pathspec" version))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cpburnz/python-pathspec")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(sha256
- (base32 "04jpkzic8f58z6paq7f3f7fdnlv9l89khv3sqsqk7ax10caxb0m4"))))
+ (base32 "1xjli6hl8588ki48s4mgx2nn5whnmikxngpfgjbfw4af92j4x5cr"))))
(build-system pyproject-build-system)
(arguments (list #:test-backend #~'unittest))
(native-inputs
(list python-flit-core
- python-setuptools-bootstrap))
+ python-packaging-bootstrap))
(home-page "https://github.com/cpburnz/python-pathspec")
(synopsis "Utility library for gitignore style pattern matching of file
paths")
(description