1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
{
lib,
buildPythonPackage,
click,
fetchFromGitHub,
httpx,
jinja2,
nodeenv,
pydantic,
python-dotenv,
pythonOlder,
setuptools,
strenum,
tomlkit,
typing-extensions,
}:
buildPythonPackage rec {
pname = "prisma";
version = "0.15.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "RobertCraigie";
repo = "prisma-client-py";
rev = "refs/tags/v${version}";
hash = "sha256-F+Up1HHslralt3NvZZ/wT+CKvzKOjhEEuMEeT0L6NZM=";
};
build-system = [ setuptools ];
dependencies = [
click
httpx
jinja2
nodeenv
pydantic
python-dotenv
tomlkit
typing-extensions
] ++ lib.optionals (pythonOlder "3.11") [ strenum ];
# Building the client requires network access
doCheck = false;
pythonImportsCheck = [ "prisma" ];
meta = with lib; {
description = "Auto-generated and fully type-safe database client for prisma";
homepage = "https://github.com/RobertCraigie/prisma-client-py";
changelog = "https://github.com/RobertCraigie/prisma-client-py/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}
|