Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-kusto / default.nix
blob0cb59d74226e3ba0f260013c2db56d26851adce4
2   lib,
3   azure-common,
4   azure-mgmt-core,
5   buildPythonPackage,
6   fetchPypi,
7   isodate,
8   pythonOlder,
9   setuptools,
12 buildPythonPackage rec {
13   pname = "azure-mgmt-kusto";
14   version = "3.3.0";
15   pyproject = true;
17   disabled = pythonOlder "3.9";
19   src = fetchPypi {
20     inherit pname version;
21     hash = "sha256-PmGGtyVrYFCMnpiCq9x9uwoMboDO1ePlGAJzrMTj3ps=";
22   };
24   build-system = [ setuptools ];
26   dependencies = [
27     azure-common
28     azure-mgmt-core
29     isodate
30   ];
32   # no tests included
33   doCheck = false;
35   pythonImportsCheck = [
36     "azure.common"
37     "azure.mgmt.kusto"
38   ];
40   meta = with lib; {
41     description = "Microsoft Azure Kusto Management Client Library for Python";
42     homepage = "https://github.com/Azure/azure-sdk-for-python";
43     changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-kusto_${version}/sdk/kusto/azure-mgmt-kusto/CHANGELOG.md";
44     license = licenses.mit;
45     maintainers = with maintainers; [ jonringer ];
46   };