lol

gimme-aws-creds: 2.7.1 -> 2.7.2

+7 -2
+7 -2
pkgs/tools/admin/gimme-aws-creds/default.nix
··· 42 42 in 43 43 python.pkgs.buildPythonApplication rec { 44 44 pname = "gimme-aws-creds"; 45 - version = "2.7.1"; # N.B: if you change this, check if overrides are still up-to-date 45 + version = "2.7.2"; # N.B: if you change this, check if overrides are still up-to-date 46 46 format = "setuptools"; 47 47 48 48 src = fetchFromGitHub { 49 49 owner = "Nike-Inc"; 50 50 repo = "gimme-aws-creds"; 51 51 rev = "v${version}"; 52 - hash = "sha256-vn3DzDqu19g6Z/RcWsktJxmeg6oK9NIEyjpH9g1tXNs="; 52 + hash = "sha256-ydzGaUQ43vvQqU9xvhPJqHG/2PUtBbASIVpZCDnsR60="; 53 53 }; 54 54 55 55 nativeBuildInputs = with python.pkgs; [ ··· 70 70 okta 71 71 pyjwt 72 72 ]; 73 + 74 + preCheck = '' 75 + # Disable using platform's keyring unavailable in sandbox 76 + export PYTHON_KEYRING_BACKEND="keyring.backends.fail.Keyring" 77 + ''; 73 78 74 79 checkInputs = with python.pkgs; [ 75 80 pytestCheckHook