nixpkgs/pkgs/development/python-modules/azure-multiapi-storage/default.nix
Paul Meyer 2e0c384c45 python3Packages.azure-multiapi-storage: 1.3.0 -> 1.4.0
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
2025-04-01 08:17:25 +02:00

54 lines
983 B
Nix

{
lib,
azure-common,
azure-core,
buildPythonPackage,
cryptography,
fetchPypi,
msrest,
pythonOlder,
requests,
setuptools,
python-dateutil,
}:
buildPythonPackage rec {
pname = "azure-multiapi-storage";
version = "1.4.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
hash = "sha256-RfFd+1xL2ouWJ3NLXMcsRfQ215bi4ha+iCOcYXjND3E=";
};
build-system = [ setuptools ];
dependencies = [
azure-common
azure-core
cryptography
msrest
requests
python-dateutil
];
# fix namespace
pythonNamespaces = [ "azure.multiapi" ];
# no tests included
doCheck = false;
pythonImportsCheck = [
"azure.multiapi.storage"
];
meta = {
description = "Microsoft Azure Storage Client Library for Python with multi API version support";
homepage = "https://github.com/Azure/azure-multiapi-storage-python";
license = lib.licenses.mit;
maintainers = [ ];
};
}