[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/08: gnu: Add python-pickleshare.
From: |
Ricardo Wurmus |
Subject: |
05/08: gnu: Add python-pickleshare. |
Date: |
Mon, 12 Oct 2015 14:08:38 +0000 |
rekado pushed a commit to branch master
in repository guix.
commit 0d34e01b62ea451e6584010c7c7a6db8e6e211ed
Author: Ricardo Wurmus <address@hidden>
Date: Wed Sep 23 12:48:27 2015 +0200
gnu: Add python-pickleshare.
* gnu/packages/python.scm (python-pickleshare, python2-pickleshare): New
variables.
---
gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++
1 files changed, 29 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index cf09bf4..41b08cf 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -3853,6 +3853,35 @@ common operations on files to be invoked on those path
objects directly.")
(define-public python2-pathpy
(package-with-python2 python-pathpy))
+(define-public python-pickleshare
+ (package
+ (name "python-pickleshare")
+ (version "0.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://pypi.python.org/packages/source/p/"
+ "pickleshare/pickleshare-" version ".tar.gz"))
+ (sha256
+ (base32 "11ljr90j3p6qswdrbl7p4cjb2i93f6vn0vx9anzpshsx0d2mggn0"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-pathpy" ,python-pathpy)))
+ (home-page "https://github.com/vivainio/pickleshare")
+ (synopsis "Tiny key value database with concurrency support")
+ (description
+ "PickleShare is a small ‘shelve’-like datastore with concurrency support.
+Like shelve, a PickleShareDB object acts like a normal dictionary. Unlike
+shelve, many processes can access the database simultaneously. Changing a
+value in database is immediately visible to other processes accessing the same
+database. Concurrency is possible because the values are stored in separate
+files. Hence the “database” is a directory where all files are governed by
+PickleShare.")
+ (license license:expat)))
+
+(define-public python2-pickleshare
+ (package-with-python2 python-pickleshare))
+
(define-public python-ipython
(package
(name "python-ipython")
- branch master updated (db94f8c -> 2b10eb4), Ricardo Wurmus, 2015/10/15
- 07/08: gnu: Add python-ipython-genutils., Ricardo Wurmus, 2015/10/12
- 05/08: gnu: Add python-pickleshare.,
Ricardo Wurmus <=
- 01/08: gnu: Add python-pexpect., Ricardo Wurmus, 2015/10/12
- 08/08: gnu: Add python-traitlets., Ricardo Wurmus, 2015/10/12
- 02/08: gnu: Add python-setuptools-scm., Ricardo Wurmus, 2015/10/12
- 04/08: gnu: Add python-pathpy., Ricardo Wurmus, 2015/10/12
- 03/08: gnu: Add python-pytest-runner., Ricardo Wurmus, 2015/10/12
- 06/08: gnu: Add python-simplegeneric., Ricardo Wurmus, 2015/10/12