1{ lib 2, buildPythonPackage 3, fetchPypi 4, msrest 5, azure-common 6, msrestazure 7}: 8 9buildPythonPackage rec { 10 pname = "azure-batch"; 11 version = "11.0.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 extension = "zip"; 16 sha256 = "ce5fdb0ec962eddfe85cd82205e9177cb0bbdb445265746e38b3bbbf1f16dc73"; 17 }; 18 19 propagatedBuildInputs = [ 20 msrest 21 msrestazure 22 azure-common 23 ]; 24 25 # has no tests 26 doCheck = false; 27 28 pythonImportsCheck = [ "azure.batch" ]; 29 30 meta = with lib; { 31 description = "This is the Microsoft Azure Batch Client Library"; 32 homepage = "https://github.com/Azure/azure-sdk-for-python"; 33 license = licenses.mit; 34 maintainers = with maintainers; [ maxwilson ]; 35 }; 36}