pythonPackages.azure-mgmt-scheduler: init at 2.0.0

This commit is contained in:
Max Wilson 2019-04-29 18:59:39 -04:00 committed by Wael M. Nasreddine
parent e1f894b0de
commit e70d8d9802
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
, msrest
, msrestazure
, azure-common
, azure-mgmt-nspkg
}:
buildPythonPackage rec {
pname = "azure-mgmt-scheduler";
version = "2.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "c6e6edd386ddc4c21d54b1497c3397b970bc127b71809b51bd2391cb1f3d1a14";
};
propagatedBuildInputs = [
msrest
msrestazure
azure-common
azure-mgmt-nspkg
];
# has no tests
doCheck = false;
meta = with lib; {
description = "This is the Microsoft Azure Scheduler Management Client Library";
homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/scheduler?view=azure-python;
license = licenses.mit;
maintainers = with maintainers; [ mwilsoninsight ];
};
}

View File

@ -382,6 +382,8 @@ in {
azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { };
azure-mgmt-scheduler = callPackage ../development/python-modules/azure-mgmt-scheduler { };
azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { };
backports_csv = callPackage ../development/python-modules/backports_csv {};