1{ lib
2, buildPythonPackage
3, fetchPypi
4, python
5, azure-mgmt-common
6, isPy3k
7}:
8
9buildPythonPackage rec {
10 version = "13.0.0";
11 pname = "azure-mgmt-compute";
12
13 src = fetchPypi {
14 inherit pname version;
15 extension = "zip";
16 sha256 = "7f331bafcbedf25d65aa42038f7553747dab18d7f10a5af3297192d31c45339e";
17 };
18
19 propagatedBuildInputs = [
20 azure-mgmt-common
21 ];
22
23 pythonNamespaces = [ "azure.mgmt" ];
24
25 # has no tests
26 doCheck = false;
27
28 meta = with lib; {
29 description = "This is the Microsoft Azure Compute Management Client Library";
30 homepage = "https://github.com/Azure/azure-sdk-for-python";
31 license = licenses.mit;
32 maintainers = with maintainers; [ olcai mwilsoninsight ];
33 };
34}