diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-12 12:19:03 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-12 12:32:41 +0000 |
| commit | 8528afb3caba8f685dbd05194236d3ea08e1e8a2 (patch) | |
| tree | f26a04ea05117fca24d6e8466b10fdb262b47702 /gnu/packages/python-xyz.scm | |
| parent | 5a232433c361f257a7c80b4c52ee8fcb33202369 (diff) | |
gnu: Add python-filelock-next.
* gnu/packages/python-xyz.scm (python-filelock-next): New variable.
Change-Id: I831dcdf7543a723dc7fd0cd5603b23002ccf0501
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 0f6d3f9905a..640b18ac239 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -5495,6 +5495,25 @@ a platform independent file lock in Python, which provides a simple way of inter-process communication.") (license license:unlicense))) +(define-public python-filelock-next + (package + (inherit python-filelock) + (name "python-filelock") + (version "3.20.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "filelock" version)) + (sha256 + (base32 "1x0k9hrk8gr91hfb6ss6cwlq4p0pvi40nsg6skhl5gn69qxr87ki")))) + (native-inputs + (list python-hatch-vcs + python-hatchling + python-pytest + python-pytest-asyncio + python-pytest-mock + python-pytest-timeout)))) + (define-public python-seedir (package (name "python-seedir") |
