[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/12: gnu: Add python-zict.
From: |
guix-commits |
Subject: |
10/12: gnu: Add python-zict. |
Date: |
Wed, 28 Jul 2021 14:32:28 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 41431282e2829f9af61f6cdccc15099d41ab0627
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Jul 28 20:23:03 2021 +0200
gnu: Add python-zict.
* gnu/packages/python-xyz.scm (python-zict): New variable.
---
gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0b1fdd0..e4dee0a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -19534,6 +19534,30 @@ like a regular Python @code{dict}. It’s designed to
be used as a priority
queue.")
(license license:bsd-3)))
+(define-public python-zict
+ (package
+ (name "python-zict")
+ (version "2.0.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "zict" version))
+ (sha256
+ (base32
+ "05pd1hyhqvpw87rnbvl3vdyf619snpyccbswaxisdj17frwnjacf"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-heapdict" ,python-heapdict)))
+ (native-inputs
+ `(("python-pytest" ,python-pytest)))
+ (home-page "https://zict.readthedocs.io/en/latest/")
+ (synopsis "Composable mutable mapping tools")
+ (description "This package provides abstract @code{MutableMapping} classes
+that consume and build on other @code{MutableMappings}. Several of these can
+be composed with one another to form intuitive interfaces over complex storage
+systems policies.")
+ (license license:bsd-3)))
+
(define-public python-send2trash
(package
(name "python-send2trash")
- 09/12: gnu: Add python-heapdict., (continued)
- 09/12: gnu: Add python-heapdict., guix-commits, 2021/07/28
- 08/12: gnu: python-pyarrow: Fix parquet support., guix-commits, 2021/07/28
- 05/12: gnu: python-partd: Update to 1.2.0., guix-commits, 2021/07/28
- 07/12: gnu: python-pandas: Update to 1.3.0., guix-commits, 2021/07/28
- 01/12: gnu: cmake: Update to 3.21.1., guix-commits, 2021/07/28
- 12/12: gnu: Add python-modin., guix-commits, 2021/07/28
- 11/12: gnu: Add python-distributed., guix-commits, 2021/07/28
- 02/12: gnu: python2-cloudpickle: Override version, source, and native-inputs., guix-commits, 2021/07/28
- 06/12: gnu: python-dask: Update to 2021.7.1., guix-commits, 2021/07/28
- 04/12: gnu: python-numexpr: Update to 2.7.3., guix-commits, 2021/07/28
- 10/12: gnu: Add python-zict.,
guix-commits <=