Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
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.0.0";
13
14 src = fetchPypi {
15 inherit pname version;
16 extension = "zip";
17 sha256 = "407c2dacb33513ffbe9ca4be5addb5e9d4bae0cb7efa613c3f7d531ef7bf8de8";
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}