python312Packages.azure-mgmt-keyvault: refactor

This commit is contained in:
natsukium 2024-07-27 11:44:21 +09:00
parent d1e6569d98
commit 8210dab583
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -4,6 +4,7 @@
azure-mgmt-core,
buildPythonPackage,
fetchPypi,
setuptools,
isodate,
pythonOlder,
}:
@ -11,7 +12,7 @@
buildPythonPackage rec {
pname = "azure-mgmt-keyvault";
version = "10.3.1";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.8";
@ -20,7 +21,9 @@ buildPythonPackage rec {
hash = "sha256-NLkpVq773VccrloD9weOA32Ah7LADPpnSINdxzq7WjA=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
azure-common
azure-mgmt-core
isodate
@ -28,6 +31,8 @@ buildPythonPackage rec {
pythonNamespaces = [ "azure.mgmt" ];
pythonImportsCheck = [ "azure.mgmt.keyvault" ];
# Module has no tests
doCheck = false;
@ -36,8 +41,6 @@ buildPythonPackage rec {
homepage = "https://github.com/Azure/azure-sdk-for-python";
changelog = "https://github.com/Azure/azure-sdk-for-python/blob/azure-mgmt-keyvault_${version}/sdk/keyvault/azure-mgmt-keyvault/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [
maxwilson
];
maintainers = with maintainers; [ maxwilson ];
};
}