pythonPackages.google-auth: add missing dependency on six
google-auth depends on six as indicated here:
65074d3fbe/setup.py
It only builds on hydra without it right now,
because another dependency pulls it in as a checkInput:
https://github.com/DavHau/mach-nix/issues/240#issuecomment-786015221
This commit is contained in:
parent
d8fd467095
commit
a11492ad8c
|
@ -12,6 +12,7 @@
|
|||
, pytest-localserver
|
||||
, responses
|
||||
, rsa
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -23,7 +24,7 @@ buildPythonPackage rec {
|
|||
sha256 = "0bmdqkyv8k8n6s8dss4zpbcq1cdxwicpb42kwybd02ia85mh43hb";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ pyasn1-modules cachetools rsa ];
|
||||
propagatedBuildInputs = [ pyasn1-modules cachetools rsa six ];
|
||||
|
||||
checkInputs = [
|
||||
flask
|
||||
|
|
Loading…
Reference in New Issue