me
/
guix
Archived
1
0
Fork 0

gnu: python-xyz: Add python-filelock.

* gnu/packages/python-xyz.scm (python-filelock): New variable.
master
Jakub Kądziołka 2020-03-05 18:08:20 +01:00
parent f2a6483084
commit 6e79208954
No known key found for this signature in database
GPG Key ID: E315A75846131564
1 changed files with 20 additions and 0 deletions

View File

@ -671,6 +671,26 @@ API for locking files.")
(define-public python2-lockfile
(package-with-python2 python-lockfile))
(define-public python-filelock
(package
(name "python-filelock")
(version "3.0.12")
(source
(origin
(method url-fetch)
(uri (pypi-uri "filelock" version))
(sha256
(base32
"0ngzlvb5j8gqs2nxlp2b0jhzii792h66wsn694qm8kqixr225n0q"))))
(build-system python-build-system)
(home-page
"https://github.com/benediktschmitt/py-filelock")
(synopsis "Platform independent file lock")
(description "@code{filelock} contains a single module implementing
a platform independent file lock in Python, which provides a simple way of
inter-process communication.")
(license license:unlicense)))
(define-public python-semantic-version
(package
(name "python-semantic-version")