3
0
Fork 0
forked from mirrors/nixpkgs
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-06-21 06:37:17 +01:00
version = "0.6.0";
2018-03-17 17:49:06 +00:00
src = fetchPypi {
inherit pname version;
2018-06-21 06:37:17 +01:00
sha256 = "e7b8425ce36894cda8b8ed3387a47119edc517302e6a72942602df54a96ee453";
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;
};
}