python311Packages.azure-data-tables: 12.4.3 -> 12.4.4

Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-data-tables_12.4.4/sdk/tables/azure-data-tables/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2023-09-20 09:20:40 +02:00
parent 8acedb7656
commit 887d3be3a4

View file

@ -1,33 +1,43 @@
{ lib { lib
, azure-core
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, azure-core , isodate
, msrest , pythonOlder
, typing-extensions
, yarl
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-data-tables"; pname = "azure-data-tables";
version = "12.4.3"; version = "12.4.4";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; hash = "sha256-HWjIQBWYmU43pSxKLcwx45EExn10jeEkyY9Hpbyn0vw=";
hash = "sha256-qLA0vNRyIu36xKwB55BD/TCTOv+nmyOtk3+Y4P+SalI=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
azure-core azure-core
msrest isodate
typing-extensions
yarl
]; ];
# has no tests # Module has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ "azure.data.tables" ]; pythonImportsCheck = [
"azure.data.tables"
];
meta = with lib; { meta = with lib; {
description = "NoSQL data storage service that can be accessed from anywhere"; description = "NoSQL data storage service that can be accessed from anywhere";
homepage = "https://github.com/Azure/azure-sdk-for-python"; homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-data-tables_${version}/sdk/tables/azure-data-tables/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ jonringer ]; maintainers = with maintainers; [ jonringer ];
}; };