python311Packages.azure-mgmt-security: 5.0.0 -> 6.0.0

Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-security_6.0.0/sdk/security/azure-mgmt-security/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2024-01-25 21:38:28 +01:00
parent f67b36bad6
commit 01038b59a3

View File

@ -1,34 +1,33 @@
{ lib { lib
, buildPythonPackage
, fetchPypi
, azure-common , azure-common
, azure-mgmt-core , azure-mgmt-core
, msrest , buildPythonPackage
, msrestazure , fetchPypi
, isodate
, pythonOlder , pythonOlder
, typing-extensions , setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-security"; pname = "azure-mgmt-security";
version = "5.0.0"; version = "6.0.0";
format = "setuptools"; fpyproject = true;
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-OLA+/oLCNEzqID/alebQC3rCJ4L6HAtYXNDqLI/z5wI="; hash = "sha256-zq/BhpiZBnEQvYMMXMmLybjzLY6oQMofaTsaX1Kl+LA=";
extension = "zip";
}; };
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [ propagatedBuildInputs = [
azure-common azure-common
azure-mgmt-core azure-mgmt-core
msrest isodate
msrestazure
] ++ lib.optionals (pythonOlder "3.8") [
typing-extensions
]; ];
# no tests included # no tests included
@ -42,6 +41,7 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Microsoft Azure Security Center Management Client Library for Python"; description = "Microsoft Azure Security Center Management Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python"; homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-security_${version}/sdk/security/azure-mgmt-security/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ jonringer ]; maintainers = with maintainers; [ jonringer ];
}; };