Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 514 B view raw
1{ lib, buildPythonPackage, fetchPypi, requests, six }: 2 3buildPythonPackage rec { 4 pname = "hvac"; 5 version = "0.10.5"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "87dc2a3183c1d4595990203e752b430155d7582a60850dfe0756189a233d4b57"; 10 }; 11 12 propagatedBuildInputs = [ requests six ]; 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}