1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

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
This commit is contained in:
jgart 2025-02-20 12:49:16 -06:00
parent 71122981cb
commit 40e83f8f72
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -3270,20 +3270,22 @@ on another machine, accessed via TCP/IP.")
(define-public python-peewee (define-public python-peewee
(package (package
(name "python-peewee") (name "python-peewee")
(version "3.14.4") (version "3.17.9")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "peewee" version)) (uri (pypi-uri "peewee" version))
(sha256 (sha256
(base32 "18jidir2wid0cp8a61m9vf9mf0pdvm6nzspc8bfwdbifghr6ndcy")))) (base32 "1a67kdmyd0y3xzhqj5r90wlpqfg703cqx36awg429qsq2w0cs5gy"))))
(build-system python-build-system) (build-system pyproject-build-system)
(arguments (arguments
`(#:tests? #f)) ; fails to import test data `(#:tests? #f)) ; fails to import test data
(inputs (inputs
(list sqlite)) (list sqlite))
(native-inputs (native-inputs
(list python-cython)) (list python-cython
python-setuptools
python-wheel))
(home-page "https://github.com/coleifer/peewee/") (home-page "https://github.com/coleifer/peewee/")
(synopsis "Small object-relational mapping utility") (synopsis "Small object-relational mapping utility")
(description (description