{ lib , buildPythonPackage , fetchPypi , msrest , msrestazure , azure-common , azure-mgmt-nspkg , python , isPy3k }: buildPythonPackage rec { pname = "azure-mgmt-dns"; version = "2.1.0"; src = fetchPypi { inherit pname version; extension = "zip"; sha256 = "3730b1b3f545a5aa43c0fff07418b362a789eb7d81286e2bed90ffef88bfa5d0"; }; propagatedBuildInputs = [ msrest msrestazure azure-common azure-mgmt-nspkg ]; # has no tests doCheck = false; meta = with lib; { description = "This is the Microsoft Azure DNS Management Client Library"; homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/dns?view=azure-python; license = licenses.mit; maintainers = with maintainers; [ mwilsoninsight ]; }; }