gnu: Add python-prisma.
* gnu/packages/databases.scm (python-prisma): New variable. Change-Id: I7df9b5600fb49ef46a73678323bc29993f35fae2master
parent
224f8d543b
commit
20606ca9af
|
@ -28,7 +28,7 @@
|
||||||
;;; Copyright © 2017, 2018 Ben Woodcroft <donttrustben@gmail.com>
|
;;; Copyright © 2017, 2018 Ben Woodcroft <donttrustben@gmail.com>
|
||||||
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
;;; Copyright © 2017 Rutger Helling <rhelling@mykolab.com>
|
||||||
;;; Copyright © 2017, 2018, 2019 Pierre Langlois <pierre.langlois@gmx.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 © 2017 Kristofer Buffington <kristoferbuffington@gmail.com>
|
||||||
;;; Copyright © 2018 Amirouche Boubekki <amirouche@hypermove.net>
|
;;; Copyright © 2018 Amirouche Boubekki <amirouche@hypermove.net>
|
||||||
;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
|
;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
|
||||||
|
@ -578,6 +578,35 @@ the API, and provides features such as:
|
||||||
@end itemize")
|
@end itemize")
|
||||||
(license license:bsd-3)))
|
(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
|
(define-public python-pylibmc
|
||||||
(package
|
(package
|
||||||
(name "python-pylibmc")
|
(name "python-pylibmc")
|
||||||
|
|
Reference in New Issue