mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 15:22:18 -05:00
gnu: Add python-property-cached.
* gnu/packages/python-xyz.scm (python-property-cached): New variable. Change-Id: I173c358bd8cf6d536cc984c3d9c76e0bad41dad4 Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
parent
325fed4c15
commit
b0edf212e1
1 changed files with 22 additions and 0 deletions
|
@ -10011,6 +10011,28 @@ (define-public python-olefile
|
|||
the OleFileIO module from PIL, the Python Image Library.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-property-cached
|
||||
(package
|
||||
(name "python-property-cached")
|
||||
(version "1.6.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "property-cached" version ".zip"))
|
||||
(sha256
|
||||
(base32 "0wxv5sdx1p7ils36j6j6hfscz8v2vzbq212i8y8r0lrnxpqlx71y"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
(list
|
||||
;; AssertionError.
|
||||
#:test-flags #~(list "-k" "not test_threads_ttl_expiry")))
|
||||
(native-inputs (list python-freezegun python-pytest unzip))
|
||||
(home-page "https://github.com/althonos/property-cached/")
|
||||
(synopsis "Decorator for caching properties in classes")
|
||||
(description "This package provides a decorator for caching properties in
|
||||
classes. It is forked from @code{cached-property}.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-pypdf3
|
||||
(package
|
||||
(name "python-pypdf3")
|
||||
|
|
Loading…
Reference in a new issue