~ruther/guix-local

40290f6faa4e38401358b6cb057d4fc61c21515c — Sharlatan Hellseher 8 months ago 6c2bb88
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
1 files changed, 3 insertions(+), 5 deletions(-)

M gnu/packages/databases.scm
M gnu/packages/databases.scm => gnu/packages/databases.scm +3 -5
@@ 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