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