Merge pull request #117054 from dotlambda/google-auth-fix

authored by

Sandro and committed by
GitHub
8191fbba 933682b5

+11 -1
+3
pkgs/development/python-modules/cachetools/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , isPy27 3 4 , fetchFromGitHub 4 5 , pytestCheckHook 5 6 }: ··· 7 8 buildPythonPackage rec { 8 9 pname = "cachetools"; 9 10 version = "4.2.1"; 11 + 12 + disabled = isPy27; 10 13 11 14 src = fetchFromGitHub { 12 15 owner = "tkem";
+8 -1
pkgs/development/python-modules/google-auth/default.nix
··· 13 13 , responses 14 14 , rsa 15 15 , six 16 + , pyopenssl 16 17 }: 17 18 18 19 buildPythonPackage rec { ··· 24 25 sha256 = "0bmdqkyv8k8n6s8dss4zpbcq1cdxwicpb42kwybd02ia85mh43hb"; 25 26 }; 26 27 27 - propagatedBuildInputs = [ pyasn1-modules cachetools rsa six ]; 28 + propagatedBuildInputs = [ 29 + cachetools 30 + pyasn1-modules 31 + rsa 32 + six 33 + pyopenssl 34 + ]; 28 35 29 36 checkInputs = [ 30 37 flask