2019-04-30 00:40:09 +02:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-10-24 18:03:57 +02:00
|
|
|
, python
|
|
|
|
, isPy3k
|
2019-04-30 00:40:09 +02:00
|
|
|
, msrest
|
|
|
|
, msrestazure
|
|
|
|
, azure-common
|
|
|
|
, azure-mgmt-nspkg
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "azure-mgmt-dns";
|
2019-08-05 10:18:16 +02:00
|
|
|
version = "3.0.0";
|
2019-04-30 00:40:09 +02:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
extension = "zip";
|
2019-08-05 10:18:16 +02:00
|
|
|
sha256 = "0zxkcczf01b64qfwj98jqdvnwqahygcyccf37rcxpdcfgpkg9kbf";
|
2019-04-30 00:40:09 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
msrest
|
|
|
|
msrestazure
|
|
|
|
azure-common
|
|
|
|
azure-mgmt-nspkg
|
|
|
|
];
|
|
|
|
|
2019-12-23 18:16:03 +01:00
|
|
|
# this is still needed for when the version is overrided
|
2020-03-17 23:43:56 +01:00
|
|
|
pythonNamespaces = [ "azure.mgmt" ];
|
2019-10-24 18:03:57 +02:00
|
|
|
|
2019-04-30 00:40:09 +02:00
|
|
|
# has no tests
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "This is the Microsoft Azure DNS Management Client Library";
|
2019-10-19 18:47:11 +02:00
|
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python";
|
2019-04-30 00:40:09 +02:00
|
|
|
license = licenses.mit;
|
2019-10-24 18:03:57 +02:00
|
|
|
maintainers = with maintainers; [ jonringer mwilsoninsight ];
|
2019-04-30 00:40:09 +02:00
|
|
|
};
|
|
|
|
}
|