mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: Add python-prisma.
* gnu/packages/databases.scm (python-prisma): New variable. Change-Id: I7df9b5600fb49ef46a73678323bc29993f35fae2
This commit is contained in:
parent
224f8d543b
commit
20606ca9af
1 changed files with 30 additions and 1 deletions
|
@ -28,7 +28,7 @@
|
|||
;;; Copyright © 2017, 2018 Ben Woodcroft <donttrustben@gmail.com>
|
||||
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
||||
;;; Copyright © 2017, 2018, 2019 Pierre Langlois <pierre.langlois@gmx.com>
|
||||
;;; Copyright © 2015, 2017, 2018, 2019, 2021, 2022, 2023 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2015, 2017, 2018, 2019, 2021, 2022, 2023, 2024 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2017 Kristofer Buffington <kristoferbuffington@gmail.com>
|
||||
;;; Copyright © 2018 Amirouche Boubekki <amirouche@hypermove.net>
|
||||
;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
|
||||
|
@ -578,6 +578,35 @@ (define-public libmemcached
|
|||
@end itemize")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public python-prisma
|
||||
(package
|
||||
(name "python-prisma")
|
||||
(version "0.12.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "prisma" version))
|
||||
(sha256
|
||||
(base32 "1y9m3bailnvid59dl4vx31vysaqbcg6gsppskyymaxg3m96808pc"))))
|
||||
(build-system pyproject-build-system)
|
||||
(propagated-inputs
|
||||
(list python-cached-property
|
||||
python-click
|
||||
python-dotenv
|
||||
python-httpx
|
||||
python-jinja2
|
||||
python-nodeenv
|
||||
python-pydantic
|
||||
python-strenum
|
||||
python-tomlkit
|
||||
python-typing-extensions))
|
||||
(home-page "https://github.com/RobertCraigie/prisma-client-py")
|
||||
(synopsis "Fully type-safe database client")
|
||||
(description
|
||||
"Prisma Client Python is an auto-generated and fully type-safe database
|
||||
client.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public python-pylibmc
|
||||
(package
|
||||
(name "python-pylibmc")
|
||||
|
|
Loading…
Reference in a new issue