{ lib , buildPythonPackage , fetchPypi , msrest , azure-common , msrestazure }: buildPythonPackage rec { pname = "azure-batch"; version = "10.0.0"; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "83d7a2b0be42ca456ac2b56fa3dc6ce704c130e888d37d924072c1d3718f32d0"; }; propagatedBuildInputs = [ msrest msrestazure azure-common ]; # has no tests doCheck = false; meta = with lib; { description = "This is the Microsoft Azure Batch Client Library"; homepage = "https://github.com/Azure/azure-sdk-for-python"; license = licenses.mit; maintainers = with maintainers; [ maxwilson ]; }; }