at 18.09-beta 502 B view raw
1{ lib, buildPythonPackage, fetchPypi, requests }: 2 3buildPythonPackage rec { 4 pname = "hvac"; 5 version = "0.6.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "54672a93f75453a7de13c7c10c6d8a51630e2559a8e2a563d8e272e9e188443f"; 10 }; 11 12 propagatedBuildInputs = [ requests ]; 13 14 # Requires running a Vault server 15 doCheck = false; 16 17 meta = with lib; { 18 description = "HashiCorp Vault API client"; 19 homepage = https://github.com/ianunruh/hvac; 20 license = licenses.asl20; 21 }; 22}