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

36 lines
611 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, pyhcl
, requests
, six
}:
2018-03-17 18:49:06 +01:00
buildPythonPackage rec {
pname = "hvac";
version = "0.10.14";
2018-03-17 18:49:06 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-DGFvKdZkKtqrzUCKBEaTdO2DvhKyRQG7M36PN7rf7yI=";
2018-03-17 18:49:06 +01:00
};
propagatedBuildInputs = [
pyhcl
requests
six
];
2018-03-17 18:49:06 +01:00
2018-03-17 19:19:32 +01:00
# Requires running a Vault server
doCheck = false;
pythonImportsCheck = [ "hvac" ];
2018-03-17 18:49:06 +01:00
meta = with lib; {
description = "HashiCorp Vault API client";
2020-03-15 21:32:29 +01:00
homepage = "https://github.com/ianunruh/hvac";
2018-03-17 18:49:06 +01:00
license = licenses.asl20;
maintainers = with maintainers; [ ];
2018-03-17 18:49:06 +01:00
};
}