nixpkgs/pkgs/development/python-modules/hvac/default.nix

23 lines
502 B
Nix
Raw Normal View History

2018-03-17 10:49:06 -07:00
{ lib, buildPythonPackage, fetchPypi, requests }:
buildPythonPackage rec {
pname = "hvac";
2018-08-13 00:25:05 -07:00
version = "0.6.3";
2018-03-17 10:49:06 -07:00
src = fetchPypi {
inherit pname version;
2018-08-13 00:25:05 -07:00
sha256 = "54672a93f75453a7de13c7c10c6d8a51630e2559a8e2a563d8e272e9e188443f";
2018-03-17 10:49:06 -07:00
};
propagatedBuildInputs = [ requests ];
2018-03-17 11:19:32 -07:00
# Requires running a Vault server
doCheck = false;
2018-03-17 10:49:06 -07:00
meta = with lib; {
description = "HashiCorp Vault API client";
homepage = https://github.com/ianunruh/hvac;
license = licenses.asl20;
};
}