python3Packages.azure-mgmt-relay: 0.2.0 -> 1.0.0

This commit is contained in:
Jonathan Ringer 2021-01-11 16:19:23 -08:00 committed by Jonathan Ringer
parent 456e422d17
commit 953a43c48c

View File

@ -5,22 +5,24 @@
, isPy3k , isPy3k
, msrestazure , msrestazure
, azure-common , azure-common
, azure-mgmt-core
, azure-mgmt-nspkg , azure-mgmt-nspkg
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-relay"; pname = "azure-mgmt-relay";
version = "0.2.0"; version = "1.0.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; extension = "zip";
sha256 = "0s5z4cil750wn770m0hdzcrpshj4bj1bglkkvxdx9l9054dk9s57"; sha256 = "38f6dd9d122a316efa921e72933e01ec4d76ed39d4682655b17a997079e8b20a";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
msrestazure msrestazure
azure-common azure-common
azure-mgmt-core
azure-mgmt-nspkg azure-mgmt-nspkg
]; ];
@ -28,6 +30,7 @@ buildPythonPackage rec {
# has no tests # has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ "azure.mgmt.relay" ];
meta = with lib; { meta = with lib; {
description = "This is the Microsoft Azure Relay Client Library"; description = "This is the Microsoft Azure Relay Client Library";