python3Packages.azure-monitor-query: init 1.3.0

https://github.com/Azure/azure-sdk-for-python/releases/tag/azure-monitor-query_1.3.0
This commit is contained in:
superherointj
2024-07-17 09:14:27 -03:00
parent afbd9afe77
commit 4a82d0ec25
2 changed files with 44 additions and 0 deletions
@@ -0,0 +1,42 @@
{
azure-cli,
azure-core,
buildPythonPackage,
fetchPypi,
isodate,
lib,
setuptools,
typing-extensions,
}:
buildPythonPackage rec {
pname = "azure-monitor-query";
version = "1.3.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-629Un2FJr0SExRq/m7tmEjn1eBRfi+9lSFWXbu9CL+Y=";
};
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;
};
}
+2
View File
@@ -1302,6 +1302,8 @@ self: super: with self; {
azure-monitor-ingestion = callPackage ../development/python-modules/azure-monitor-ingestion { };
azure-monitor-query = callPackage ../development/python-modules/azure-monitor-query { };
azure-multiapi-storage = callPackage ../development/python-modules/azure-multiapi-storage { };
azure-nspkg = callPackage ../development/python-modules/azure-nspkg { };