depot/third_party/nixpkgs/pkgs/development/python-modules/azure-storage-queue/default.nix
Default email b5f92a349c Project import generated by Copybara.
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
2023-10-19 15:55:26 +02:00

50 lines
1.1 KiB
Nix

{ lib
, azure-core
, buildPythonPackage
, cryptography
, fetchPypi
, isodate
, pythonOlder
, typing-extensions
}:
buildPythonPackage rec {
pname = "azure-storage-queue";
version = "12.7.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-sDVzLTLT9mQ3eWYZM4CzDkv99rR2dHhDVExaXyE1VYk=";
};
propagatedBuildInputs = [
azure-core
cryptography
isodate
typing-extensions
];
passthru.optional-dependencies = {
aio = [
azure-core
] ++ azure-core.optional-dependencies.aio;
};
# has no tests
doCheck = false;
pythonImportsCheck = [
"azure.storage.queue"
];
meta = with lib; {
description = "Client library for Microsoft Azure Storage services containing the queue service APIs";
homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-queue_${version}/sdk/storage/azure-storage-queue/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ cmcdragonkai ];
};
}