blob: d610012f297436089b0094dffab3ab655f0534d8 (
plain)
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
58
59
60
|
{
lib,
agate,
buildPythonPackage,
dbt-common,
dbt-protos,
fetchPypi,
hatchling,
mashumaro,
protobuf,
pytestCheckHook,
pytz,
typing-extensions,
}:
buildPythonPackage rec {
pname = "dbt-adapters";
version = "1.16.7";
pyproject = true;
# missing tags on GitHub
src = fetchPypi {
pname = "dbt_adapters";
inherit version;
hash = "sha256-I3bE6RP0Udp4bO+OXlRdXM2H+TaXvNFJiHIrqgb0i4A=";
};
build-system = [ hatchling ];
pythonRelaxDeps = [
"mashumaro"
"protobuf"
];
dependencies = [
agate
dbt-common
dbt-protos
mashumaro
protobuf
pytz
typing-extensions
]
++ mashumaro.optional-dependencies.msgpack;
pythonImportsCheck = [ "dbt.adapters" ];
# circular dependencies
doCheck = false;
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Set of adapter protocols and base functionality that supports integration with dbt-core";
homepage = "https://github.com/dbt-labs/dbt-adapters";
changelog = "https://github.com/dbt-labs/dbt-adapters/blob/main/dbt-adapters/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|