python3Packages.azure-mgmt-privatedns: init at 0.1.0

This commit is contained in:
Jonathan Ringer 2019-10-22 23:55:58 -07:00 committed by Jon
parent 9c6325bbea
commit 6b41c90abe
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
, azure-common
, msrest
, msrestazure
}:
buildPythonPackage rec {
version = "0.1.0";
pname = "azure-mgmt-privatedns";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "08wdvfkk8jh90m3l4nz7knd5vikgfvsx70lk7mkhcvl0xj6gv76j";
extension = "zip";
};
propagatedBuildInputs = [ azure-common msrest msrestazure ];
# no tests included
doCheck = false;
pythonImportsCheck = [ "azure.common" "azure.mgmt.privatedns" ];
meta = with lib; {
description = "Microsoft Azure DNS Private Zones Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};
}

View file

@ -407,6 +407,8 @@ in {
azure-mgmt-powerbiembedded = callPackage ../development/python-modules/azure-mgmt-powerbiembedded { };
azure-mgmt-privatedns = callPackage ../development/python-modules/azure-mgmt-privatedns { };
azure-mgmt-rdbms = callPackage ../development/python-modules/azure-mgmt-rdbms { };
azure-mgmt-recoveryservices = callPackage ../development/python-modules/azure-mgmt-recoveryservices { };