Merge pull request #75334 from r-ryantm/auto-update/python3.8-hvac

python38Packages.hvac: 0.9.5 -> 0.9.6
This commit is contained in:
Mario Rodas 2019-12-09 06:15:53 -05:00 committed by GitHub
commit cbcafdbf12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +1,15 @@
{ lib, buildPythonPackage, fetchPypi, requests }: { lib, buildPythonPackage, fetchPypi, requests, six }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "hvac"; pname = "hvac";
version = "0.9.5"; version = "0.9.6";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "8b98be5868132a591ae5a3ca4b415231d4eac22d3fd77dbd69c3b1081d9ea26d"; sha256 = "1v37jabp859691863mw8j06hqxsy16ndf804z2k5y5b0d167j9by";
}; };
propagatedBuildInputs = [ requests ]; propagatedBuildInputs = [ requests six ];
# Requires running a Vault server # Requires running a Vault server
doCheck = false; doCheck = false;