summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-18 16:57:14 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-18 23:37:58 +0100
commitdb9a4f13a9cefc4b4e80e9205bbb88df637b27ac (patch)
tree70c975cd49fcdf1dad71de79ed83747d9abdfc9c /gnu
parent151a5b524f2cd976a2a9c4e3637c34e5975432c5 (diff)
gnu: python-stdlib-list: Update to 0.11.1.
* gnu/packages/python-xyz.scm (python-stdlib-list): Update to 0.11.1. [source]: Switch to git-fetch. [build-system]: Switch to pyproject-build-system. [arguments]: Re-enable tests. [native-inputs]: Add python-flit-core, python-pytest. [description]: Improve style. Change-Id: Id53f5a6e0ad13eb259007ff68225d13e9d10ec65 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm29
1 files changed, 16 insertions, 13 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 1683bd21241..8203bda873b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -17024,24 +17024,27 @@ checksums. It implement more than a hundred checksum routines.")
stdin/stdout/stderr.")
(license license:expat)))
+;; TODO: This package is not necessary in Guix. It should be replaced by a
+;; trivial python package providing the same functionality.
(define-public python-stdlib-list
(package
(name "python-stdlib-list")
- (version "0.8.0")
- (source (origin
- (method url-fetch)
- (uri (pypi-uri "stdlib-list" version))
- (sha256
- (base32
- "17vdn4q0sdlndc2fr9svapxx6366hnrhkn0fswp1xmr0jxqh7rd1"))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f)) ; Tests require more dependencies.
- (native-inputs
- (list python-sphinx))
+ (version "0.11.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jackmaney/python-stdlib-list")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "14aw5xbqcs0ww9n4659z5dbs89xqpw2s4m3q4gp66br2xr9iybjf"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-flit-core python-pytest python-sphinx))
(home-page "https://github.com/jackmaney/python-stdlib-list")
(synopsis "Python Standard Libraries")
- (description "This package contains a list of Python Standard Libraries.")
+ (description
+ "This package contains a list of Python Standard Libraries.")
(license license:expat)))
(define-public python-stopit