[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/16: gnu: Add python-cloudpickle.
From: |
Ricardo Wurmus |
Subject: |
06/16: gnu: Add python-cloudpickle. |
Date: |
Mon, 10 Sep 2018 10:51:23 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 930ba31d20f204ca0cee9ea6fedf1aab24195d49
Author: Ricardo Wurmus <address@hidden>
Date: Wed Sep 5 15:59:56 2018 +0200
gnu: Add python-cloudpickle.
* gnu/packages/python.scm (python-cloudpickle): New variable.
---
gnu/packages/python.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index b87c478..c029fd1 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14137,3 +14137,37 @@ that is accessible to other projects developed in
Cython.")
"This package provides a sorted collections library, written in
pure-Python.")
(license license:asl2.0)))
+
+(define-public python-cloudpickle
+ (package
+ (name "python-cloudpickle")
+ (version "0.5.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "cloudpickle" version))
+ (sha256
+ (base32
+ "0gdg5n025v4wqmdg65rm0n6fvp6731ip30ji0rmn2kqsyr4bb93f"))))
+ (build-system python-build-system)
+ ;; FIXME: there are 5 errors in 122 tests:
+ ;; ERROR: test_function_pickle_compat_0_4_0
(tests.cloudpickle_test.CloudPickleTest)
+ ;; ERROR: test_function_pickle_compat_0_4_1
(tests.cloudpickle_test.CloudPickleTest)
+ ;; ERROR: test_function_pickle_compat_0_4_0
(tests.cloudpickle_test.Protocol2CloudPickleTest)
+ ;; ERROR: test_function_pickle_compat_0_4_1
(tests.cloudpickle_test.Protocol2CloudPickleTest)
+ ;; ERROR: test_temp_file (tests.cloudpickle_file_test.CloudPickleFileTests)
+ ;; TypeError: cannot serialize '_io.BufferedRandom' object
+ (arguments '(#:tests? #f))
+ (native-inputs
+ `(("python-pytest" ,python-pytest)
+ ("python-mock" ,python-mock)
+ ("python-tornado" ,python-tornado)))
+ (home-page "https://github.com/cloudpipe/cloudpickle")
+ (synopsis "Extended pickling support for Python objects")
+ (description
+ "Cloudpickle makes it possible to serialize Python constructs not
+supported by the default pickle module from the Python standard library. It
+is especially useful for cluster computing where Python expressions are
+shipped over the network to execute on remote hosts, possibly close to the
+data.")
+ (license license:bsd-3)))
- branch master updated (82d5c7c -> 5bfa751), Ricardo Wurmus, 2018/09/10
- 10/16: gnu: Add python-dask., Ricardo Wurmus, 2018/09/10
- 16/16: gnu: Add python-pygenometracks., Ricardo Wurmus, 2018/09/10
- 15/16: gnu: Add python-hicexplorer., Ricardo Wurmus, 2018/09/10
- 13/16: gnu: Add python-pyfaidx., Ricardo Wurmus, 2018/09/10
- 14/16: gnu: Add python-cooler., Ricardo Wurmus, 2018/09/10
- 12/16: gnu: Add python-pypairix., Ricardo Wurmus, 2018/09/10
- 11/16: gnu: Add python-intervaltree., Ricardo Wurmus, 2018/09/10
- 04/16: gnu: Add python-cytoolz., Ricardo Wurmus, 2018/09/10
- 06/16: gnu: Add python-cloudpickle.,
Ricardo Wurmus <=
- 03/16: gnu: Add python-toolz., Ricardo Wurmus, 2018/09/10
- 09/16: gnu: Add python-partd., Ricardo Wurmus, 2018/09/10
- 08/16: gnu: Add python-blosc., Ricardo Wurmus, 2018/09/10
- 02/16: gnu: Add python-multiprocess., Ricardo Wurmus, 2018/09/10
- 01/16: gnu: Add python-dill., Ricardo Wurmus, 2018/09/10
- 07/16: gnu: Add python-locket., Ricardo Wurmus, 2018/09/10
- 05/16: gnu: Add python-sortedcontainers., Ricardo Wurmus, 2018/09/10