From 40e83f8f72fc831c94dc6d42664be50db755344b Mon Sep 17 00:00:00 2001 From: jgart Date: Thu, 20 Feb 2025 12:49:16 -0600 Subject: [PATCH] gnu: python-peewee: Update to 3.17.9. * gnu/packages/databases.scm (python-peewee): Update to 3.17.9. [build-system]: Use pyproject-build-system. [native-inputs]: Add python-setuptools and python-wheel. Change-Id: I9bf350fe9366b53963d244495b22f07883a69fb5 --- gnu/packages/databases.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 87a0421fb1..e1263bfeda 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm @@ -3270,20 +3270,22 @@ on another machine, accessed via TCP/IP.") (define-public python-peewee (package (name "python-peewee") - (version "3.14.4") + (version "3.17.9") (source (origin (method url-fetch) (uri (pypi-uri "peewee" version)) (sha256 - (base32 "18jidir2wid0cp8a61m9vf9mf0pdvm6nzspc8bfwdbifghr6ndcy")))) - (build-system python-build-system) + (base32 "1a67kdmyd0y3xzhqj5r90wlpqfg703cqx36awg429qsq2w0cs5gy")))) + (build-system pyproject-build-system) (arguments `(#:tests? #f)) ; fails to import test data (inputs (list sqlite)) (native-inputs - (list python-cython)) + (list python-cython + python-setuptools + python-wheel)) (home-page "https://github.com/coleifer/peewee/") (synopsis "Small object-relational mapping utility") (description