1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6 msrest,
7 azure-common,
8 azure-mgmt-core,
9}:
10
11buildPythonPackage rec {
12 pname = "azure-mgmt-automation";
13 version = "1.0.0";
14 pyproject = true;
15
16 src = fetchPypi {
17 inherit pname version;
18 extension = "zip";
19 hash = "sha256-pJ0tQT/vVwEMs2Fh5bwFZgG418bQW9PLBaE1Eu8pHh4=";
20 };
21
22 build-system = [ setuptools ];
23
24 dependencies = [
25 msrest
26 azure-common
27 azure-mgmt-core
28 ];
29
30 # has no tests
31 doCheck = false;
32
33 pythonImportsCheck = [ "azure.mgmt.automation" ];
34
35 meta = with lib; {
36 description = "This is the Microsoft Azure Automation Client Library";
37 homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/automation/azure-mgmt-automation";
38 changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-automation_${version}/sdk/automation/azure-mgmt-automation/CHANGELOG.md";
39 license = licenses.mit;
40 maintainers = with maintainers; [ wfdewith ];
41 };
42}