about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-03-28 22:34:26 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-03-28 22:34:26 +0100
commit8449be91d0de86ae07562f779f6aeafc6a7a46cf (patch)
tree8dc95a941f2b9982331f55087e59f0beeef2b2e1
parent1c38ccb9a46eca4926f1bf2ac38bf676e0b12a84 (diff)
downloadnixlib-8449be91d0de86ae07562f779f6aeafc6a7a46cf.tar
nixlib-8449be91d0de86ae07562f779f6aeafc6a7a46cf.tar.gz
nixlib-8449be91d0de86ae07562f779f6aeafc6a7a46cf.tar.bz2
nixlib-8449be91d0de86ae07562f779f6aeafc6a7a46cf.tar.lz
nixlib-8449be91d0de86ae07562f779f6aeafc6a7a46cf.tar.xz
nixlib-8449be91d0de86ae07562f779f6aeafc6a7a46cf.tar.zst
nixlib-8449be91d0de86ae07562f779f6aeafc6a7a46cf.zip
python311Packages.dbt-snowflake: refactor
-rw-r--r--pkgs/development/python-modules/dbt-snowflake/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/dbt-snowflake/default.nix b/pkgs/development/python-modules/dbt-snowflake/default.nix
index ef3cb866c2b2..75007883bc88 100644
--- a/pkgs/development/python-modules/dbt-snowflake/default.nix
+++ b/pkgs/development/python-modules/dbt-snowflake/default.nix
@@ -22,11 +22,11 @@ buildPythonPackage rec {
     hash = "sha256-OyUBqSNHMedCDsY280O8VAmxeyeF5J0snk5o6XhE2V4=";
   };
 
-  nativeBuildInputs = [
+  build-system = [
     setuptools
   ];
 
-  propagatedBuildInputs = [
+  dependencies = [
     dbt-core
     snowflake-connector-python
   ] ++ snowflake-connector-python.optional-dependencies.secure-local-storage;