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

23 lines
514 B
Nix
Raw Normal View History

2019-12-09 03:57:06 +00:00
{ lib, buildPythonPackage, fetchPypi, requests, six }:
2018-03-17 17:49:06 +00:00
buildPythonPackage rec {
pname = "hvac";
version = "0.10.6";
2018-03-17 17:49:06 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "b0561dbdfecc6a6d7b0cc226d75a800ae9bbc93313a6ad526a1adc97be51eada";
2018-03-17 17:49:06 +00:00
};
2019-12-09 03:57:06 +00:00
propagatedBuildInputs = [ requests six ];
2018-03-17 17:49:06 +00:00
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";
2020-03-15 20:32:29 +00:00
homepage = "https://github.com/ianunruh/hvac";
2018-03-17 17:49:06 +00:00
license = licenses.asl20;
};
}