1{
2 lib,
3 azure-common,
4 azure-mgmt-core,
5 buildPythonPackage,
6 fetchPypi,
7 msrest,
8 setuptools,
9}:
10
11buildPythonPackage rec {
12 pname = "azure-mgmt-hdinsight";
13 version = "9.0.0";
14 pyproject = true;
15
16 src = fetchPypi {
17 inherit pname version;
18 hash = "sha256-QevcacDR+B0l3TBDjBT/9DMfZmOfVYBbkYuWSer/54o=";
19 extension = "zip";
20 };
21
22 build-system = [ setuptools ];
23
24 dependencies = [
25 azure-common
26 azure-mgmt-core
27 msrest
28 ];
29
30 # no tests included
31 doCheck = false;
32
33 pythonNamespaces = [ "azure.mgmt" ];
34
35 pythonImportsCheck = [
36 "azure.mgmt.hdinsight"
37 ];
38
39 meta = {
40 description = "Microsoft Azure HDInsight Management Client Library for Python";
41 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/hdinsight/azure-mgmt-hdinsight";
42 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-hdinsight_${version}/sdk/hdinsight/azure-mgmt-hdinsight/CHANGELOG.md";
43 license = lib.licenses.mit;
44 maintainers = [ ];
45 };
46}