unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#42721] [PATCH 1/3] gnu: Add python-immutables.
@ 2020-08-05 15:33 Vinicius Monego
  2020-08-05 15:33 ` [bug#42721] [PATCH 2/3] gnu: Add python-curio Vinicius Monego
  2020-08-05 15:33 ` [bug#42721] [PATCH 3/3] gnu: Add python-sniffio Vinicius Monego
  0 siblings, 2 replies; 4+ messages in thread
From: Vinicius Monego @ 2020-08-05 15:33 UTC (permalink / raw)
  To: 42721; +Cc: Vinicius Monego

* gnu/packages/python-xyz.scm (python-immutables): New variable.
---
This is a dependency for python-contextvars, which is a dependency for
python-curio. Contextvars is part of standard Python 3.7+ and uses this
implementation. Immutables still lives as a separate package.

Sending anyway in case it's useful somewhere else.

 gnu/packages/python-xyz.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9ab0b12383..28499411a7 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8551,6 +8551,25 @@ Unicode-aware.  It is not intended as an end-user tool.")
 (define-public python2-xlrd
   (package-with-python2 python-xlrd))
 
+(define-public python-immutables
+  (package
+    (name "python-immutables")
+    (version "0.14")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "immutables" version))
+       (sha256
+        (base32 "0y0aqw29g525frdnmv9paljzacpp4s21sadfbca5b137iciwr8d0"))))
+    (build-system python-build-system)
+    (home-page "https://github.com/MagicStack/immutables")
+    (synopsis "High-performance immutable mapping type for Python")
+    (description
+     "An immutable mapping type for Python.  The underlying datastructure is a
+Hash Array Mapped Trie (HAMT) used in Clojure, Scala, Haskell, and other
+functional languages.")
+    (license license:asl2.0)))
+
 (define-public python-prettytable
   (package
     (name "python-prettytable")
-- 
2.20.1





^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-08-06 14:22 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-05 15:33 [bug#42721] [PATCH 1/3] gnu: Add python-immutables Vinicius Monego
2020-08-05 15:33 ` [bug#42721] [PATCH 2/3] gnu: Add python-curio Vinicius Monego
2020-08-05 15:33 ` [bug#42721] [PATCH 3/3] gnu: Add python-sniffio Vinicius Monego
2020-08-06 14:21   ` bug#42721: " Mathieu Othacehe

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).