mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 13:14:42 +00:00
https://github.com/Azure/azure-sdk-for-python/tree/azure-keyvault-secrets_4.11.1/sdk/keyvault/azure-keyvault-secrets This commit was automatically generated using update-python-libraries.
43 lines
995 B
Nix
43 lines
995 B
Nix
{
|
|
lib,
|
|
azure-core,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
isodate,
|
|
setuptools,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "azure-keyvault-secrets";
|
|
version = "4.11.1";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "azure_keyvault_secrets";
|
|
inherit version;
|
|
hash = "sha256-I7Ecvs9FJQgRIeaKgtfzpCEVVvbbtN27OQqU24tyyTg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [
|
|
azure-core
|
|
isodate
|
|
typing-extensions
|
|
];
|
|
|
|
pythonNamespaces = [ "azure.keyvault" ];
|
|
|
|
# Tests require checkout from mono-repo
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Microsoft Azure Key Vault Secrets Client Library for Python";
|
|
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/keyvault/azure-keyvault-secrets";
|
|
changelog = "https://github.com/Azure/azure-sdk-for-python/tree/azure-keyvault-secrets_${version}/sdk/keyvault/azure-keyvault-secrets";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|