From 40290f6faa4e38401358b6cb057d4fc61c21515c Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 21 Sep 2025 09:06:01 +0100 Subject: [PATCH] gnu: python-peewee: Update to 3.18.2. * gnu/packages/databases.scm (python-peewee): Update to 3.18.2. [native-inputs]: Remove python-cython and python-wheel. Change-Id: I852dc5f0bb6cf299e83b510008af103cda716b6e --- gnu/packages/databases.scm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 951ae8826d8a011689c324e5f0c3f2a0473bc106..547016c85aba27ebee9858bbbd9741e1db0d7f85 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -3654,22 +3654,20 @@ on another machine, accessed via TCP/IP.") (define-public python-peewee (package (name "python-peewee") - (version "3.17.9") + (version "3.18.2") (source (origin (method url-fetch) (uri (pypi-uri "peewee" version)) (sha256 - (base32 "1a67kdmyd0y3xzhqj5r90wlpqfg703cqx36awg429qsq2w0cs5gy")))) + (base32 "184n97vc9xy0whl8w54431fc4h5ij7mjwggnfbmg5bv1xdil59bp")))) (build-system pyproject-build-system) (arguments `(#:tests? #f)) ; fails to import test data (inputs (list sqlite)) (native-inputs - (list python-cython - python-setuptools - python-wheel)) + (list python-setuptools)) (home-page "https://github.com/coleifer/peewee/") (synopsis "Small object-relational mapping utility") (description