pythonPackages.azure-batch: init at 6.0.1

This commit is contained in:
Max Wilson 2019-04-29 17:41:12 -04:00 committed by Wael M. Nasreddine
parent a18f5138e1
commit 7ca7dfcd2c
No known key found for this signature in database
GPG key ID: FD437548E0BF0F5F
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, msrest
, azure-common
, msrestazure
}:
buildPythonPackage rec {
pname = "azure-batch";
version = "6.0.1";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "d5b0de3db0058cd69baf30e059874094abf865e24ccd82e3cd25f3a48b9676d1";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Batch Client Library";
homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/batch?view=azure-python;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

View file

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