From ccc04fa4254a0aefa5c644b6699fe6a77a427d70 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Thu, 7 May 2026 07:05:10 +0200 Subject: gnu: Add python-pycrdt-store. * gnu/packages/python-web.scm (python-pycrdt-store): New variable. Relates-to: guix/guix!8591 Change-Id: Id066086cab72ea663fbb8d27cc685515589304fb Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-web.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'gnu/packages/python-web.scm') diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 59ca4dca6b..f483be7e31 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -4560,6 +4560,36 @@ This is a Python CRDT library that provides bindings for Yrs, the Rust port of the Yjs framework.") (license license:expat))) +(define-public python-pycrdt-store + (package + (name "python-pycrdt-store") + (version "0.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/y-crdt/pycrdt-store") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "18yvv5lgxb4v0qlbi8bbkcm1666nxbkmhbx445sxpzab7027fl1a")))) + (build-system pyproject-build-system) + (propagated-inputs + (list python-anyio + python-pycrdt + python-sqlite-anyio)) + (native-inputs + (list python-hatchling + python-pytest + python-pytest-rerunfailures + python-trio)) + (home-page "https://github.com/y-crdt/pycrdt-store") + (synopsis "Persistent storage for pycrdt") + (description + "This package provides a persistent storage feature for +@code{python-pycrdt}.") + (license license:expat))) + (define-public python-pycurl (package (name "python-pycurl") -- cgit v1.3