Merge pull request #329647 from r-ryantm/auto-update/python312Packages.azure-mgmt-keyvault

python312Packages.azure-mgmt-keyvault: 10.3.0 -> 10.3.1
This commit is contained in:
OTABI Tomoya 2024-07-27 13:19:12 +09:00 committed by GitHub
commit a1c17fdfde
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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