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

23 lines
502 B
Nix
Raw Normal View History

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