pythonPackages.azure-mgmt-batchai: init at 2.0.0

This commit is contained in:
Max Wilson 2019-04-29 18:18:25 -04:00 committed by Wael M. Nasreddine
parent c156da6fea
commit 3fb174eb0e
No known key found for this signature in database
GPG Key ID: FD437548E0BF0F5F
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib
, buildPythonPackage
, fetchPypi
, azure-common
, azure-mgmt-nspkg
, msrestazure
, python
, isPy3k
}:
buildPythonPackage rec {
pname = "azure-mgmt-batchai";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "f1870b0f97d5001cdb66208e5a236c9717a0ed18b34dbfdb238a828f3ca2a683";
};
propagatedBuildInputs = [
msrestazure
azure-common
azure-mgmt-nspkg
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Batch AI Management Client Library";
homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-batchai;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

View File

@ -286,6 +286,8 @@ in {
azure-mgmt-batch = callPackage ../development/python-modules/azure-mgmt-batch { };
azure-mgmt-batchai = callPackage ../development/python-modules/azure-mgmt-batchai { };
azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { };
azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { };