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
This commit is contained in:
Sharlatan Hellseher 2025-09-21 09:06:01 +01:00
parent 6c2bb88d1a
commit 40290f6faa
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -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