python312Packages.azure-mgmt-apimanagement: 4.0.0 -> 4.0.1

Changelog: https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-apimanagement_4.0.1/sdk/apimanagement/azure-mgmt-apimanagement/CHANGELOG.md
This commit is contained in:
Fabian Affolter 2024-04-10 09:17:20 +02:00
parent faaae5accc
commit a30289f238

View File

@ -1,27 +1,33 @@
{ lib, buildPythonPackage, fetchPypi, isPy27 { lib
, azure-common , azure-common
, azure-mgmt-core , azure-mgmt-core
, msrest , buildPythonPackage
, msrestazure , fetchPypi
, isodate
, pythonOlder
, setuptools
}: }:
buildPythonPackage rec { buildPythonPackage rec {
version = "4.0.0";
format = "setuptools";
pname = "azure-mgmt-apimanagement"; pname = "azure-mgmt-apimanagement";
disabled = isPy27; version = "4.0.1";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-AiTjLJ28g80xnrRFLfPUevJgeaxLpuGmvkd3+FskNiw="; sha256 = "sha256-XPUJzALti7QXTmgtuwVDhCA2luWz7zfykWEsJmpHzA4=";
extension = "zip";
}; };
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [ propagatedBuildInputs = [
azure-common azure-common
azure-mgmt-core azure-mgmt-core
msrest isodate
msrestazure
]; ];
# no tests included # no tests included
@ -31,7 +37,8 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
description = "Microsoft Azure API Management Client Library for Python"; description = "Microsoft Azure API Management Client Library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/apimanagement/azure-mgmt-apimanagement";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-apimanagement_${version}/sdk/apimanagement/azure-mgmt-apimanagement/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ jonringer ]; maintainers = with maintainers; [ jonringer ];
}; };