43 lines
947 B
Nix
43 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;
|
||
|
};
|
||
|
}
|