python3Packages.azure-mgmt-search: 3.0.0 -> 8.0.0

This commit is contained in:
Jonathan Ringer 2021-01-11 16:19:24 -08:00 committed by Jonathan Ringer
parent 953a43c48c
commit 9071a6f006

View File

@ -4,28 +4,31 @@
, msrest , msrest
, msrestazure , msrestazure
, azure-common , azure-common
, azure-mgmt-core
, azure-mgmt-nspkg , azure-mgmt-nspkg
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-search"; pname = "azure-mgmt-search";
version = "3.0.0"; version = "8.0.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; extension = "zip";
sha256 = "d4c78b14b48edd2e27e2068c9a448acfc84a18595be77fe483afe7bb447e1eb6"; sha256 = "a96d50c88507233a293e757202deead980c67808f432b8e897c4df1ca088da7e";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
azure-common
azure-mgmt-core
azure-mgmt-nspkg
msrest msrest
msrestazure msrestazure
azure-common
azure-mgmt-nspkg
]; ];
# has no tests # has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [ "azure.mgmt.search" ];
meta = with lib; { meta = with lib; {
description = "This is the Microsoft Azure Search Management Client Library"; description = "This is the Microsoft Azure Search Management Client Library";