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