3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #133736 from r-ryantm/auto-update/python3.8-azure-mgmt-loganalytics

This commit is contained in:
Sandro 2021-08-27 06:18:45 +02:00 committed by GitHub
commit 1f97df129c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,6 @@
{ lib
, buildPythonPackage
, fetchPypi
, python
, isPy3k
, msrest
, msrestazure
, azure-common
@ -12,12 +10,12 @@
buildPythonPackage rec {
pname = "azure-mgmt-loganalytics";
version = "10.0.0";
version = "11.0.0";
src = fetchPypi {
inherit pname version;
extension = "zip";
sha256 = "29330984d0f084dff26cea239d7b733c1a26844da85d33bf3bb53b515ce0bc23";
sha256 = "41671fc6e95180fb6147cb40567410c34b85fb69bb0a9b3e09feae1ff370ee9d";
};
propagatedBuildInputs = [
@ -33,6 +31,8 @@ buildPythonPackage rec {
# has no tests
doCheck = false;
pythonImportsCheck = [ "azure.mgmt.loganalytics" ];
meta = with lib; {
description = "This is the Microsoft Azure Log Analytics Management Client Library";
homepage = "https://github.com/Azure/azure-sdk-for-python";