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-10-06 10:56:17 +00:00
version = "0.6.4";
2018-03-17 17:49:06 +00:00
src = fetchPypi {
inherit pname version;
2018-10-06 10:56:17 +00:00
sha256 = "d7f23883c44458078359142608d0bc6373c4bcec107bdb609c827ee1dda61431";
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;
};
}