depot/third_party/nixpkgs/pkgs/development/python-modules/azure-monitor-query/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

42 lines
947 B
Nix

{
azure-cli,
azure-core,
buildPythonPackage,
fetchPypi,
isodate,
lib,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "azure-monitor-query";
version = "1.4.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-aZxvPFlC8J2pjO8nP/u3QDkE7EP5PA1j8Qo2e0R54Ak=";
};
nativeBuildInputs = [ setuptools ];
dependencies = [
azure-core
isodate
typing-extensions
];
pythonImportsCheck = [
"azure"
"azure.monitor.query"
];
meta = {
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-query_${version}/sdk/monitor/azure-monitor-query/CHANGELOG.md";
description = "Microsoft Azure Monitor Query Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-query";
license = lib.licenses.mit;
maintainers = azure-cli.meta.maintainers;
};
}