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