Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 44 lines 862 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 msrest, 6 msrestazure, 7 azure-common, 8 azure-mgmt-core, 9}: 10 11buildPythonPackage rec { 12 pname = "azure-mgmt-dns"; 13 version = "8.1.0"; 14 format = "setuptools"; 15 16 src = fetchPypi { 17 inherit pname version; 18 extension = "zip"; 19 sha256 = "sha256-2DedS7kZS4G3nlKE2HX6bfgHBzRvLLtcVJGiDzUmb9A="; 20 }; 21 22 propagatedBuildInputs = [ 23 msrest 24 msrestazure 25 azure-common 26 azure-mgmt-core 27 ]; 28 29 # this is still needed for when the version is overrided 30 pythonNamespaces = [ "azure.mgmt" ]; 31 32 # has no tests 33 doCheck = false; 34 35 meta = with lib; { 36 description = "This is the Microsoft Azure DNS Management Client Library"; 37 homepage = "https://github.com/Azure/azure-sdk-for-python"; 38 license = licenses.mit; 39 maintainers = with maintainers; [ 40 jonringer 41 maxwilson 42 ]; 43 }; 44}