mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
python3Packages.azure-mgmt-privatedns: init at 0.1.0
This commit is contained in:
parent
9c6325bbea
commit
6b41c90abe
@ -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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user