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