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