gnu: Add python-portalocker.

* gnu/packages/python-xyz.scm (python-portalocker): New variable.
This commit is contained in:
Ricardo Wurmus 2023-06-08 10:42:05 +02:00
parent dd587a4fef
commit c0e510dfa3
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3906,6 +3906,28 @@ (define-public python-pomegranate
Cython for speed.")
(license license:expat)))
(define-public python-portalocker
(package
(name "python-portalocker")
(version "2.7.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "portalocker" version))
(sha256
(base32
"0lawjm736vs86wlnxc3qqh37l11z0yx81xq3dmrw33m86kaq2bh3"))))
(build-system pyproject-build-system)
(native-inputs (list python-pytest
python-pytest-cov
python-pytest-mypy
python-pytest-timeout
python-redis))
(home-page "https://github.com/WoLpH/portalocker")
(synopsis "Python library for file locking")
(description "Portalocker is a library to provide an easy API to file
locking..")
(license license:bsd-3)))
(define-public python-poyo
(package
(name "python-poyo")