diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-12-25 00:44:37 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2026-01-25 21:22:39 +0100 |
| commit | fae2a5bb8f4f544a5e040d918022241124bb4754 (patch) | |
| tree | d33cd50be8e57dad930b3c14242deec31f98a3f4 /gnu/packages/python-xyz.scm | |
| parent | 430b98bfafabc06bca061b695404e5de0d75db78 (diff) | |
gnu: python-daemon: Replace python-lockfile by python-filelock.
* gnu/packages/python-xyz.scm (python-daemon)[propagated-inputs]:
Replace python-lockfile by python-filelock.
* gnu/packages/patches/python-daemon-relax-lockfile.patch: New file
* gnu/local.mk (dist_patch_DATA): Register patch.
Change-Id: Ia12b754065a71b612b0fe626b18e2edc9d158ae7
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index cacc0fef7e3..c25752b0706 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -9011,7 +9011,9 @@ logging and tracing of the execution.") (commit (string-append "release/" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0rfchh68pxg68s02idc0qcm2s9yn587hv0b83r4isy5ccb3g60y4")))) + (base32 "0rfchh68pxg68s02idc0qcm2s9yn587hv0b83r4isy5ccb3g60y4")) + (patches + (search-patches "python-daemon-relax-lockfile.patch")))) (build-system pyproject-build-system) (arguments (list @@ -9028,7 +9030,7 @@ logging and tracing of the execution.") '("setup.py" "test/test_util_metadata.py" "test/test_setup.py"))))))) - (propagated-inputs (list python-lockfile)) + (propagated-inputs (list python-filelock)) (native-inputs (list python-testscenarios python-setuptools)) (home-page "https://pagure.io/python-daemon/") (synopsis "Python library for making a Unix daemon process") |
