[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: python-peewee: Update to 3.13.3.
From: |
guix-commits |
Subject: |
branch master updated: gnu: python-peewee: Update to 3.13.3. |
Date: |
Sun, 08 Nov 2020 15:09:34 -0500 |
This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 831f1ff gnu: python-peewee: Update to 3.13.3.
831f1ff is described below
commit 831f1ff92ea561929db36bc54070fd2ba11b4a7e
Author: Michael Rohleder <mike@rohleder.de>
AuthorDate: Thu Nov 5 02:55:49 2020 +0100
gnu: python-peewee: Update to 3.13.3.
* gnu/packages/databases.scm (python-peewee): Update to 3.13.3.
[inputs]: Add sqlite.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
---
gnu/packages/databases.scm | 18 ++++++++++--------
1 file changed, 10 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index f7de8d1..b164f8e 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -2436,17 +2436,19 @@ on another machine, accessed via TCP/IP.")
(define-public python-peewee
(package
(name "python-peewee")
- (version "3.9.6")
- (source
- (origin
- (method url-fetch)
- (uri (pypi-uri "peewee" version))
- (sha256
- (base32
- "1j4sh946k0736m7pd54z0y6i2hjhgg3kdllx1pwq8xkzzcgrx1xw"))))
+ (version "3.13.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "peewee" version))
+ (sha256
+ (base32
+ "0sc376v6rxga4b7ic9kxw2pmf28rmcx016320pa2nlb5d1rsjs8j"))))
(build-system python-build-system)
(arguments
`(#:tests? #f)) ; Fails to import test data
+ (inputs
+ `(("sqlite" ,sqlite)))
(native-inputs
`(("python-cython" ,python-cython)))
(home-page "https://github.com/coleifer/peewee/";)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: python-peewee: Update to 3.13.3.,
guix-commits <=