1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 azure-common,
6 azure-mgmt-core,
7 azure-mgmt-nspkg,
8 msrestazure,
9}:
10
11buildPythonPackage rec {
12 pname = "azure-mgmt-batchai";
13 version = "2.0.0";
14 format = "setuptools";
15
16 src = fetchPypi {
17 inherit pname version;
18 extension = "zip";
19 sha256 = "f1870b0f97d5001cdb66208e5a236c9717a0ed18b34dbfdb238a828f3ca2a683";
20 };
21
22 propagatedBuildInputs = [
23 msrestazure
24 azure-common
25 azure-mgmt-core
26 azure-mgmt-nspkg
27 ];
28
29 pythonNamespaces = [ "azure.mgmt" ];
30
31 # has no tests
32 doCheck = false;
33
34 meta = with lib; {
35 description = "This is the Microsoft Azure Batch AI Management Client Library";
36 homepage = "https://github.com/Azure/azure-sdk-for-python";
37 license = licenses.mit;
38 maintainers = with maintainers; [ maxwilson ];
39 };
40}