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
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 ];
};
}