Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 33 lines 721 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.0.0"; 10 disabled = isPy27; 11 12 src = fetchPypi { 13 inherit pname version; 14 extension = "zip"; 15 sha256 = "066p4x2ixasz6qbxss2ilchl73w1kh2nc32lgh8qygl3d90059lp"; 16 }; 17 18 propagatedBuildInputs = [ 19 azure-common 20 azure-core 21 msrest 22 ]; 23 24 # requires checkout from mono-repo 25 doCheck = false; 26 27 meta = with lib; { 28 description = "Microsoft Azure Key Vault Secrets Client Library for Python"; 29 homepage = "https://github.com/Azure/azure-sdk-for-python"; 30 license = licenses.mit; 31 maintainers = with maintainers; [ jonringer ]; 32 }; 33}