diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-16 11:58:14 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-17 04:45:30 +0100 |
commit | 0fecc6ce67502dac11a5e31a5c48f379a8f93bd5 (patch) | |
tree | f65cdba33e713ac12b91fb4865f1e4842df38cda | |
parent | c7e8bfe2ff05af55bbe1207b0e50077689e5aeb2 (diff) | |
download | guix-0fecc6ce67502dac11a5e31a5c48f379a8f93bd5.tar.gz |
gnu: python-peewee: Update to 3.14.0.
* gnu/packages/databases.scm (python-peewee): Update to 3.14.0.
-rw-r--r-- | gnu/packages/databases.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 8cb2a8738c..903b5e1025 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -2437,17 +2437,16 @@ on another machine, accessed via TCP/IP.") (define-public python-peewee (package (name "python-peewee") - (version "3.13.3") + (version "3.14.0") (source (origin (method url-fetch) (uri (pypi-uri "peewee" version)) (sha256 - (base32 - "0sc376v6rxga4b7ic9kxw2pmf28rmcx016320pa2nlb5d1rsjs8j")))) + (base32 "1yl49gxrg0c2x3n3r60z3lixw9am8b61s0477l9vjabhhx1yziar")))) (build-system python-build-system) (arguments - `(#:tests? #f)) ; Fails to import test data + `(#:tests? #f)) ; fails to import test data (inputs `(("sqlite" ,sqlite))) (native-inputs |