~ruther/guix-local

e2b1dcbe504fecb40692d7811fc9e9e25cb57aca — Sharlatan Hellseher 7 months ago 2078f64
gnu: python-prisma: Update to 0.15.0.

* gnu/packages/databases.scm (python-prisma): Update to 0.15.0.
[arguments] <tests?>: No tests in PyPI.
[propagated-inputs]: Remove python-cached-property and python-strenum.
[native-inputs]: Remove python-wheel.

Change-Id: Ib0f95e6ac4c84abf456ebd759addfa63da56596f
1 files changed, 9 insertions(+), 6 deletions(-)

M gnu/packages/databases.scm
M gnu/packages/databases.scm => gnu/packages/databases.scm +9 -6
@@ 843,29 843,32 @@ this package in a more convenient interface, and should be preferred where
they exist.")
    (license license:asl2.0)))

;; XXX: This project was archived by the owner on Apr 15, 2025. It is now
;; read-only.
(define-public python-prisma
  (package
    (name "python-prisma")
    (version "0.12.0")
    (version "0.15.0")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "prisma" version))
       (sha256
        (base32 "1y9m3bailnvid59dl4vx31vysaqbcg6gsppskyymaxg3m96808pc"))))
        (base32 "01x1ki99k2ps2jis73vzzrqw8zsf810205f17zdja9ijm0m41mjw"))))
    (build-system pyproject-build-system)
    (arguments
     (list #:tests? #f))        ;no tests in PyPI
    (native-inputs
     (list python-setuptools))
    (propagated-inputs
     (list python-cached-property
           python-click
     (list python-click
           python-dotenv
           python-httpx
           python-jinja2
           python-nodeenv
           python-pydantic-2
           python-strenum
           python-tomlkit
           python-typing-extensions))
    (native-inputs (list python-setuptools python-wheel))
    (home-page "https://github.com/RobertCraigie/prisma-client-py")
    (synopsis "Fully type-safe database client")
    (description