summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2025-01-01 21:32:09 +0100
committerRicardo Wurmus <rekado@elephly.net>2025-01-20 21:37:29 +0100
commitf2a78678d0e322ba3aa9c901758dbfd372d47351 (patch)
tree88f7ba658b9332c0e19b8802c1ce10f6e42286f1 /gnu/packages/python-xyz.scm
parentce3cd8acba88a86336c2666a744f86b67c3e3d99 (diff)
gnu: Add python-propcache.
* gnu/packages/python-xyz.scm (python-propcache): New variable. Change-Id: Id02eb09da7adbdc965065a3473d9567edafbf6a7
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm38
1 files changed, 38 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ec4637d937..cd7cf53c9b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -9896,6 +9896,44 @@ To address this and enable easy cycling over arbitrary @code{kwargs}, the
convert between colorspaces like sRGB, XYZ, CIEL*a*b*, CIECAM02, CAM02-UCS, etc.")
(license license:expat)))
+(define-public python-propcache
+ (package
+ (name "python-propcache")
+ (version "0.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "propcache" version))
+ (sha256
+ (base32 "0r4sq2j6s63wziw8fhnrx0lxlg8ch3z2i6a92ivm7jqridrcwxrz"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:test-flags '(list "--ignore=tests/test_benchmarks.py")
+ #:phases
+ '(modify-phases %standard-phases
+ (add-after 'unpack 'patch-build-system
+ (lambda _
+ ;; XXX: I don't know how to tell it to build the extensions in
+ ;; place.
+ (substitute* "packaging/pep517_backend/_backend.py"
+ (("build_inplace=False") "build_inplace=True")))))))
+ (native-inputs
+ (list python-covdefaults
+ python-cython-3
+ python-expandvars
+ python-pytest
+ python-pytest-cov
+ python-pytest-xdist
+ python-setuptools
+ python-tomli
+ python-wheel))
+ (home-page "https://github.com/aio-libs/propcache")
+ (synopsis "Accelerated property cache")
+ (description "The module provides a fast implementation of cached
+properties for Python 3.9+.")
+ (license license:asl2.0)))
+
(define-public python-proto-matcher
(package
(name "python-proto-matcher")