mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-14 00:43:24 +00:00
python312Packages.azure-multiapi-storage: fix build (#362147)
This commit is contained in:
commit
6dc317f692
@ -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 = [ ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user