blob: 50a775edfa4e9b308145996c61b6f9b2b9801b73 (
plain) (
blame)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
agate,
dbt-common,
mashumaro,
protobuf,
pytz,
typing-extensions,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "dbt-adapters";
version = "1.7.0";
pyproject = true;
src = fetchFromGitHub {
owner = "dbt-labs";
repo = "dbt-adapters";
rev = "refs/tags/v${version}";
hash = "sha256-I3A3rIMpT+MAq+ebid9RMr6I3W1l4ir78UmfeEr5U3U=";
};
build-system = [ hatchling ];
dependencies = [
agate
dbt-common
mashumaro
protobuf
pytz
typing-extensions
] ++ mashumaro.optional-dependencies.msgpack;
pythonImportsCheck = [ "dbt.adapters" ];
# circular dependencies
doCheck = false;
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "The 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/${src.rev}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ ];
};
}
|