python3Packages.azure-kusto-ingest: init at 4.6.1
This commit is contained in:
parent
54f25b8587
commit
4cdafcf691
@ -0,0 +1,53 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
azure-kusto-data,
|
||||
azure-storage-blob,
|
||||
azure-storage-queue,
|
||||
tenacity,
|
||||
pandas,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "azure-kusto-ingest";
|
||||
version = "4.6.1";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Azure";
|
||||
repo = "azure-kusto-python";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-rm8G3/WAUlK1/80uk3uiTqDA5hUIr+VVZEmPe0mYBjI=";
|
||||
};
|
||||
|
||||
sourceRoot = "${src.name}/azure-kusto-ingest";
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
azure-kusto-data
|
||||
azure-storage-blob
|
||||
azure-storage-queue
|
||||
tenacity
|
||||
];
|
||||
|
||||
optional-dependencies = {
|
||||
pandas = [ pandas ];
|
||||
};
|
||||
|
||||
# Tests require secret connection strings
|
||||
# and a network connection.
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "azure.kusto.ingest" ];
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/Azure/azure-kusto-python/releases/tag/v${version}";
|
||||
description = "Kusto Ingest Client";
|
||||
homepage = "https://github.com/Azure/azure-kusto-python";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ pyrox0 ];
|
||||
};
|
||||
}
|
@ -1175,6 +1175,8 @@ self: super: with self; {
|
||||
|
||||
azure-kusto-data = callPackage ../development/python-modules/azure-kusto-data { };
|
||||
|
||||
azure-kusto-ingest = callPackage ../development/python-modules/azure-kusto-ingest { };
|
||||
|
||||
azure-loganalytics = callPackage ../development/python-modules/azure-loganalytics { };
|
||||
|
||||
azure-mgmt-advisor = callPackage ../development/python-modules/azure-mgmt-advisor { };
|
||||
|
Loading…
Reference in New Issue
Block a user