dbt: relax protobuf (#349155)

This commit is contained in:
Peder Bergebakken Sundt 2024-10-20 18:06:20 +02:00 committed by GitHub
commit f54bb08625
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 1 deletions

View File

@ -26,6 +26,8 @@ buildPythonPackage rec {
build-system = [ hatchling ];
pythonRelaxDeps = [ "protobuf" ];
dependencies = [
agate
dbt-common

View File

@ -36,7 +36,10 @@ buildPythonPackage rec {
build-system = [ hatchling ];
pythonRelaxDeps = [ "agate" ];
pythonRelaxDeps = [
"protobuf"
"agate"
];
dependencies = [
agate

View File

@ -44,6 +44,7 @@ buildPythonPackage rec {
sourceRoot = "${src.name}/core";
pythonRelaxDeps = [
"protobuf"
"agate"
"click"
"dbt-semantic-interfaces"