python311Packages.azure-mgmt-redis: 14.2.0 -> 14.3.0

Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-redis_14.3.0/sdk/redis/azure-mgmt-redis/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2023-09-20 11:36:59 +02:00
parent 1c37330916
commit 05767195e8

View file

@ -1,39 +1,44 @@
{ lib { lib
, buildPythonPackage
, fetchPypi
, msrest
, msrestazure
, azure-common , azure-common
, azure-mgmt-core , azure-mgmt-core
, azure-mgmt-nspkg , buildPythonPackage
, isPy3k , fetchPypi
, isodate
, pythonOlder
, typing-extensions
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "azure-mgmt-redis"; pname = "azure-mgmt-redis";
version = "14.2.0"; version = "14.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
extension = "zip"; hash = "sha256-eoMbY4oNzYXkn3uFUhxecJQD+BxYkGTbWhAWSgAoLyA=";
hash = "sha256-u6PG1mx3iiiLssoLzOj5kxI2L3uvQMnWrEQY6MBJOtA=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
msrest isodate
msrestazure
azure-common azure-common
azure-mgmt-core azure-mgmt-core
] ++ lib.optionals (!isPy3k) [ ] ++ lib.optionals (pythonOlder "3.8") [
azure-mgmt-nspkg typing-extensions
]; ];
# has no tests # Module has no tests
doCheck = false; doCheck = false;
pythonImportsCheck = [
"azure.mgmt.redis"
];
meta = with lib; { meta = with lib; {
description = "This is the Microsoft Azure Redis Cache Management Client Library"; description = "This is the Microsoft Azure Redis Cache Management Client Library";
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-redis_${version}/sdk/redis/azure-mgmt-redis/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ maxwilson ]; maintainers = with maintainers; [ maxwilson ];
}; };