depot/third_party/nixpkgs/pkgs/development/python-modules/azure-monitor-ingestion/default.nix

49 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, setuptools
, azure-core
, isodate
, typing-extensions
}:
buildPythonPackage rec {
pname = "azure-monitor-ingestion";
version = "1.0.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-idAEqP+HaZs/0fzyBaqO8enTTySg88w3TSIUceiYdDs=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
azure-core
isodate
typing-extensions
];
pythonImportsCheck = [
"azure.monitor.ingestion"
"azure.monitor.ingestion.aio"
];
# requires checkout from mono-repo and a mock account
doCheck = false;
meta = with lib; {
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-monitor-ingestion_${version}/sdk/monitor/azure-monitor-ingestion/CHANGELOG.md";
description = "Send custom logs to Azure Monitor using the Logs Ingestion API";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/monitor/azure-monitor-ingestion";
license = licenses.mit;
maintainers = with maintainers; [ dotlambda ];
};
}