diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-15 14:30:07 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-17 00:57:41 +0100 |
commit | 9454459d54b1184a46efd5678c258cf2ef61f01a (patch) | |
tree | 0fecced90083220a3ca251e74966782991176424 /gnu/packages/python-xyz.scm | |
parent | f8eb4bb1516bd846a40ce35b1bcfcf8624cc1d97 (diff) |
gnu: python-smmap: Update to 5.0.2.
* gnu/packages/python-xyz.scm (python-smmap): Update to 5.0.2.
[build-system]: Use pyproject.
[native-inputs]: Remove python-nosexcover; add python-pytest,
python-setuptools, and python-wheel.
Change-Id: Ia6031ed5774c3c3d8db5dd18cd158758236479d4
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index ca5a126d27..2b8d89c1e8 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -27609,16 +27609,18 @@ class ShellOutSSHClientTests")))) (define-public python-smmap (package (name "python-smmap") - (version "3.0.1") + (version "5.0.2") (source (origin (method url-fetch) (uri (pypi-uri "smmap" version)) (sha256 - (base32 "0ijlnv60y8f41py1wnn5n1a1i81cxd9dfpdhr0k3cgkrcbz8850p")))) - (build-system python-build-system) + (base32 "1mcai5vf9bgz389y4sqgj6w22wn7zmc7m33y3j50ryjq76h6bsi6")))) + (build-system pyproject-build-system) (native-inputs - (list python-nosexcover)) + (list python-pytest + python-setuptools + python-wheel)) (home-page "https://github.com/Byron/smmap") (synopsis "Python sliding window memory map manager") (description "@code{smmap} is a pure Python implementation of a sliding |