summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-11 22:06:11 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:35 +0100
commite5b60ea372cf99883ecea1c43ced5c630b126bd0 (patch)
tree5991b3b0cf748c9bb209d0a2a3de395c78d9b3dc
parentde993c89949e494f7a3e93453d2d259f4dfaced3 (diff)
gnu: python-pathspec: Update to 0.12.1.
* gnu/packages/python-build.scm (python-pathspec): Update to 0.12.1. [build-system]: Use pyproject. [arguments] <test-backend>: Use 'unittest. [native-inputs]: Add python-flit-core and python-setuptools. Change-Id: I2ac5abfd1acc54849ad523cde8afd5da320849e0
-rw-r--r--gnu/packages/python-build.scm11
1 files changed, 7 insertions, 4 deletions
diff --git a/gnu/packages/python-build.scm b/gnu/packages/python-build.scm
index 901af67c9b6..23e99a49772 100644
--- a/gnu/packages/python-build.scm
+++ b/gnu/packages/python-build.scm
@@ -55,15 +55,18 @@
(define-public python-pathspec
(package
(name "python-pathspec")
- (version "0.11.1")
+ (version "0.12.1")
(source
(origin
(method url-fetch)
(uri (pypi-uri "pathspec" version))
(sha256
- (base32
- "11qnlcanr1mqcpqpq1hmnwrs26csbsa2bafc7biq09x91y0dx617"))))
- (build-system python-build-system)
+ (base32 "04jpkzic8f58z6paq7f3f7fdnlv9l89khv3sqsqk7ax10caxb0m4"))))
+ (build-system pyproject-build-system)
+ (arguments (list #:test-backend #~'unittest))
+ (native-inputs
+ (list python-flit-core
+ python-setuptools))
(home-page "https://github.com/cpburnz/python-pathspec")
(synopsis "Utility library for gitignore style pattern matching of file paths")
(description