python312Packages.azure-multiapi-storage: fix build (#362147)

This commit is contained in:
Philip Taron 2024-12-05 11:48:00 -08:00 committed by GitHub
commit 6dc317f692
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,10 +6,10 @@
cryptography, cryptography,
fetchPypi, fetchPypi,
msrest, msrest,
msrestazure,
pythonOlder, pythonOlder,
requests, requests,
setuptools, setuptools,
python-dateutil,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -31,8 +31,8 @@ buildPythonPackage rec {
azure-core azure-core
cryptography cryptography
msrest msrest
msrestazure
requests requests
python-dateutil
]; ];
# fix namespace # fix namespace
@ -42,14 +42,13 @@ buildPythonPackage rec {
doCheck = false; doCheck = false;
pythonImportsCheck = [ pythonImportsCheck = [
"azure.common"
"azure.multiapi.storage" "azure.multiapi.storage"
]; ];
meta = with lib; { meta = {
description = "Microsoft Azure Storage Client Library for Python with multi API version support"; description = "Microsoft Azure Storage Client Library for Python with multi API version support";
homepage = "https://github.com/Azure/azure-sdk-for-python"; homepage = "https://github.com/Azure/azure-multiapi-storage-python";
license = licenses.mit; license = lib.licenses.mit;
maintainers = [ ]; maintainers = [ ];
}; };
} }