mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 23:23:36 +00:00
dbt: relax protobuf (#349155)
This commit is contained in:
commit
f54bb08625
@ -26,6 +26,8 @@ buildPythonPackage rec {
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
pythonRelaxDeps = [ "protobuf" ];
|
||||
|
||||
dependencies = [
|
||||
agate
|
||||
dbt-common
|
||||
|
@ -36,7 +36,10 @@ buildPythonPackage rec {
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
pythonRelaxDeps = [ "agate" ];
|
||||
pythonRelaxDeps = [
|
||||
"protobuf"
|
||||
"agate"
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
agate
|
||||
|
@ -44,6 +44,7 @@ buildPythonPackage rec {
|
||||
sourceRoot = "${src.name}/core";
|
||||
|
||||
pythonRelaxDeps = [
|
||||
"protobuf"
|
||||
"agate"
|
||||
"click"
|
||||
"dbt-semantic-interfaces"
|
||||
|
Loading…
Reference in New Issue
Block a user