gnu: python-peewee: Update to 3.13.3.
authorMichael Rohleder <mike@rohleder.de>
Thu, 5 Nov 2020 01:55:49 +0000 (02:55 +0100)
committerEfraim Flashner <efraim@flashner.co.il>
Sun, 8 Nov 2020 20:05:22 +0000 (22:05 +0200)
* 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

index f7de8d1..b164f8e 100644 (file)
@@ -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/")