[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/07: gnu: python-pickleshare: Update to 0.7.4.
From: |
Marius Bakke |
Subject: |
01/07: gnu: python-pickleshare: Update to 0.7.4. |
Date: |
Sun, 25 Feb 2018 23:07:51 -0500 (EST) |
mbakke pushed a commit to branch master
in repository guix.
commit ed519b3c1fc8b3a57d86318018e93ff8822fcccd
Author: Marius Bakke <address@hidden>
Date: Mon Feb 26 04:23:46 2018 +0100
gnu: python-pickleshare: Update to 0.7.4.
* gnu/packages/databases.scm (python-pickleshare): Update to 0.7.4.
[source](uri): Use PYPI-URI.
[propagated-inputs]: Remove.
[properties]: Delay python2 variant.
(python2-pickleshare)[propagated-inputs]: Add PYTHON2-PATHLIB2.
---
gnu/packages/databases.scm | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 29b6ca1..9868691 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -2240,17 +2240,14 @@ SQLAlchemy Database Toolkit for Python.")
(define-public python-pickleshare
(package
(name "python-pickleshare")
- (version "0.5")
+ (version "0.7.4")
(source
(origin
(method url-fetch)
- (uri (string-append "https://pypi.python.org/packages/source/p/"
- "pickleshare/pickleshare-" version ".tar.gz"))
+ (uri (pypi-uri "pickleshare" version))
(sha256
- (base32 "11ljr90j3p6qswdrbl7p4cjb2i93f6vn0vx9anzpshsx0d2mggn0"))))
+ (base32 "0yvk14dzxk7g6qpr7iw23vzqbsr0dh4ij4xynkhnzpfz4xr2bac4"))))
(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
@@ -2261,10 +2258,15 @@ 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.")
+ (properties `((python2-variant . ,(delay python2-pickleshare))))
(license license:expat)))
(define-public python2-pickleshare
- (package-with-python2 python-pickleshare))
+ (let ((pickleshare (package-with-python2
+ (strip-python2-variant python-pickleshare))))
+ (package (inherit pickleshare)
+ (propagated-inputs `(("python2-pathlib2" ,python2-pathlib2)
+ ,@(package-propagated-inputs pickleshare))))))
(define-public python-apsw
(package
- branch master updated (eddb9da -> cb723be), Marius Bakke, 2018/02/25
- 02/07: gnu: python2-pathlib2: Propagate python2-six., Marius Bakke, 2018/02/25
- 03/07: gnu: python-pickleshare: Run the tests., Marius Bakke, 2018/02/25
- 04/07: gnu: python-ipython: Update to 5.5.0., Marius Bakke, 2018/02/25
- 01/07: gnu: python-pickleshare: Update to 0.7.4.,
Marius Bakke <=
- 05/07: gnu: python2-pathlib2: Update to 2.3.0., Marius Bakke, 2018/02/25
- 07/07: gnu: python-scandir: Run the test suite., Marius Bakke, 2018/02/25
- 06/07: gnu: python-scandir: Update to 1.7., Marius Bakke, 2018/02/25