From b7d6e0ee25f6efa18b53448e493944066b1b13b0 Mon Sep 17 00:00:00 2001 From: natsukium Date: Wed, 7 Aug 2024 21:58:07 +0900 Subject: [PATCH] python312Packages.pyathena: modernize attribute names --- pkgs/development/python-modules/pyathena/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pyathena/default.nix b/pkgs/development/python-modules/pyathena/default.nix index da2574f1a70c..0245c7b47ce8 100644 --- a/pkgs/development/python-modules/pyathena/default.nix +++ b/pkgs/development/python-modules/pyathena/default.nix @@ -27,9 +27,9 @@ buildPythonPackage rec { hash = "sha256-SxHUnfAyVcVW4R9j0ONGzCXqGWdaeseP/QU3vNhMtI8="; }; - nativeBuildInputs = [ hatchling ]; + build-system = [ hatchling ]; - propagatedBuildInputs = [ + dependencies = [ boto3 botocore fsspec @@ -37,7 +37,7 @@ buildPythonPackage rec { python-dateutil ]; - passthru.optional-dependencies = { + optional-dependencies = { pandas = [ pandas ]; sqlalchemy = [ sqlalchemy ]; arrow = [ pyarrow ];