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

23 lines
502 B
Nix
Raw Normal View History

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