python312Packages.dbt-adapters: init at 1.3.2
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
hatchling,
|
||||
agate,
|
||||
dbt-common,
|
||||
mashumaro,
|
||||
protobuf,
|
||||
pytz,
|
||||
typing-extensions,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "dbt-adapters";
|
||||
version = "1.3.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dbt-labs";
|
||||
repo = "dbt-adapters";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-Erx/j1x+I4ypPqBFzJRZk3ILr3ZG97Hvk4vXe2p6cDc=";
|
||||
};
|
||||
|
||||
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 = with lib.maintainers; [ ];
|
||||
};
|
||||
}
|
||||
@@ -2865,6 +2865,8 @@ self: super: with self; {
|
||||
|
||||
dbglib = callPackage ../development/python-modules/dbglib { };
|
||||
|
||||
dbt-adapters = callPackage ../development/python-modules/dbt-adapters { };
|
||||
|
||||
dbt-bigquery = callPackage ../development/python-modules/dbt-bigquery { };
|
||||
|
||||
dbt-common = callPackage ../development/python-modules/dbt-common { };
|
||||
|
||||
Reference in New Issue
Block a user