From 34c6b80835a8474daac8392064a65a34ec59c94a Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Sun, 17 Dec 2017 15:30:52 +0000 Subject: gnu: Add python-dill. * gnu/packages/python.scm (python-dill): New variable. --- gnu/packages/python.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index b6c05b1a29..5f985d3607 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -3962,6 +3962,29 @@ by pycodestyle.") (define-public python2-autopep8 (package-with-python2 python-autopep8)) +(define-public python-dill + (package + (name "python-dill") + (version "0.2.7.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "dill" version)) + (sha256 + (base32 + "0wqg8mfny9ynvw2yrz6bray7d1zzzkn1i0zc24mx8hp7by7pbzcp")))) + (build-system python-build-system) + (arguments + '(#:tests? #f)) + (home-page + "http://www.cacr.caltech.edu/~mmckerns/dill.htm") + (synopsis "serialize all of python") + (description "serialize all of python") + (license #f))) + +(define-public python2-dill + (package-with-python2 python-dill)) + (define-public python-distutils-extra (package (name "python-distutils-extra") -- cgit v1.2.3