Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / azure-mgmt-dns / default.nix
blob85f84b34a79cf94c10d2e060d3782db7fafa1b4a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , msrest
5 , msrestazure
6 , azure-common
7 , azure-mgmt-core
8 }:
10 buildPythonPackage rec {
11   pname = "azure-mgmt-dns";
12   version = "8.1.0";
14   src = fetchPypi {
15     inherit pname version;
16     extension = "zip";
17     sha256 = "sha256-2DedS7kZS4G3nlKE2HX6bfgHBzRvLLtcVJGiDzUmb9A=";
18   };
20   propagatedBuildInputs = [
21     msrest
22     msrestazure
23     azure-common
24     azure-mgmt-core
25   ];
27   # this is still needed for when the version is overrided
28   pythonNamespaces = [ "azure.mgmt" ];
30   # has no tests
31   doCheck = false;
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   };