python3Packages.azure-mgmt-eventgrid: 2.2.0 -> 8.0.0

This commit is contained in:
Jonathan Ringer 2021-01-11 16:19:21 -08:00 committed by Jonathan Ringer
parent 2715fb61fb
commit a6ff11de84

View File

@ -4,23 +4,25 @@
, msrest , msrest
, msrestazure , msrestazure
, azure-common , azure-common
, azure-mgmt-core
, azure-mgmt-nspkg , azure-mgmt-nspkg
, isPy3k , isPy3k
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-eventgrid"; pname = "azure-mgmt-eventgrid";
version = "2.2.0"; version = "8.0.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; extension = "zip";
sha256 = "1hqwcl33r98lriz3fp6h8ir36bv9danx27290idv63fj7s95h866"; sha256 = "a8a6e1bb105a14f1d3545ecb07c190370f21a145f8ba51599ed169f1dc8d5dcc";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
msrest msrest
msrestazure msrestazure
azure-mgmt-core
azure-common azure-common
] ++ lib.optionals (!isPy3k) [ ] ++ lib.optionals (!isPy3k) [
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.eventgrid" ];
meta = with lib; { meta = with lib; {
description = "This is the Microsoft Azure EventGrid Management Client Library"; description = "This is the Microsoft Azure EventGrid Management Client Library";