Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.11 42 lines 813 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pythonOlder 5, azure-common 6, azure-core 7, msrest 8}: 9 10buildPythonPackage rec { 11 pname = "azure-keyvault-secrets"; 12 version = "4.7.0"; 13 format = "setuptools"; 14 15 disabled = pythonOlder "3.6"; 16 17 src = fetchPypi { 18 inherit pname version; 19 extension = "zip"; 20 hash = "sha256-d+4lNLplGh8wbIXXtQW8PM7o/qd0UOuvr8Jq7BblRF0="; 21 }; 22 23 propagatedBuildInputs = [ 24 azure-common 25 azure-core 26 msrest 27 ]; 28 29 pythonNamespaces = [ 30 "azure.keyvault" 31 ]; 32 33 # requires checkout from mono-repo 34 doCheck = false; 35 36 meta = with lib; { 37 description = "Microsoft Azure Key Vault Secrets Client Library for Python"; 38 homepage = "https://github.com/Azure/azure-sdk-for-python"; 39 license = licenses.mit; 40 maintainers = with maintainers; [ jonringer ]; 41 }; 42}