pythonPackages.azure-mgmt-batch: init at 6.0.0

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

View file

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

View file

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