summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2025-02-20 12:49:16 -0600
committerjgart <jgart@dismail.de>2025-02-20 12:51:56 -0600
commit40e83f8f72fc831c94dc6d42664be50db755344b (patch)
treeeb7caf9de53c0c9411cce8061ec41737f2e26964
parent71122981cb6136473227c5c21d6d69cbe13f1907 (diff)
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
-rw-r--r--gnu/packages/databases.scm10
1 files 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