python312Packages.azure-mgmt-appconfiguration: refactor

This commit is contained in:
Fabian Affolter 2024-04-10 09:21:47 +02:00
parent b97d0b369d
commit cdab9473ac
1 changed files with 17 additions and 9 deletions

View File

@ -1,15 +1,19 @@
{ lib, buildPythonPackage, fetchPypi, isPy27
{ lib
, azure-common
, azure-mgmt-core
, msrest
, msrestazure
, buildPythonPackage
, fetchPypi
, isodate
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
version = "3.0.0";
format = "setuptools";
pname = "azure-mgmt-appconfiguration";
disabled = isPy27;
version = "3.0.0";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchPypi {
inherit pname version;
@ -17,11 +21,14 @@ buildPythonPackage rec {
extension = "zip";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
azure-common
azure-mgmt-core
msrest
msrestazure
isodate
];
# no tests included
@ -33,7 +40,8 @@ buildPythonPackage rec {
meta = with lib; {
description = "Microsoft Azure App Configuration 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/appconfiguration/azure-mgmt-appconfiguration";
changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-mgmt-appconfiguration_${version}/sdk/appconfiguration/azure-mgmt-appconfiguration";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};