Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 22 lines 502 B view raw
1{ lib, buildPythonPackage, fetchPypi, requests }: 2 3buildPythonPackage rec { 4 pname = "hvac"; 5 version = "0.7.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "773775fa827c74299abd96079eeeeb0cefbb23b484195c03cff27d04716539ba"; 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}