From c5d6d303f3bb4973ca6500f1833eb9728988892a Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Sun, 19 Jan 2025 21:14:23 +0100 Subject: [PATCH] python3Packages.azure-data-tables: 12.5.0 -> 12.6.0 https://github.com/Azure/azure-sdk-for-python/blob/azure-data-tables_12.6.0/sdk/tables/azure-data-tables/CHANGELOG.md --- .../azure-data-tables/default.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/azure-data-tables/default.nix b/pkgs/development/python-modules/azure-data-tables/default.nix index 7b2dd03ad09b..dee9d7bbd047 100644 --- a/pkgs/development/python-modules/azure-data-tables/default.nix +++ b/pkgs/development/python-modules/azure-data-tables/default.nix @@ -3,25 +3,26 @@ azure-core, buildPythonPackage, fetchPypi, + setuptools, isodate, - pythonOlder, typing-extensions, yarl, }: buildPythonPackage rec { pname = "azure-data-tables"; - version = "12.5.0"; - format = "setuptools"; - - disabled = pythonOlder "3.8"; + version = "12.6.0"; + pyproject = true; src = fetchPypi { - inherit pname version; - hash = "sha256-7qOTpjgMQusD6AeCXAN4MgA9CcgjKUgx2hXoEVWgtOY="; + pname = "azure_data_tables"; + inherit version; + hash = "sha256-4NVZgROFX5EU/XZxYj01UJ+Ddylwz9xZeQGzX0LcMTQ="; }; - propagatedBuildInputs = [ + build-system = [ setuptools ]; + + dependencies = [ azure-core isodate typing-extensions