nixpkgs/pkgs/development/python-modules/google-auth/default.nix
Martin Schwaighofer a11492ad8c 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
2021-02-25 19:00:30 +01:00

56 lines
1.1 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ lib
, buildPythonPackage
, fetchpatch
, fetchPypi
, pytestCheckHook
, cachetools
, flask
, freezegun
, mock
, oauth2client
, pyasn1-modules
, pytest-localserver
, responses
, rsa
, six
}:
buildPythonPackage rec {
pname = "google-auth";
version = "1.24.0";
src = fetchPypi {
inherit pname version;
sha256 = "0bmdqkyv8k8n6s8dss4zpbcq1cdxwicpb42kwybd02ia85mh43hb";
};
propagatedBuildInputs = [ pyasn1-modules cachetools rsa six ];
checkInputs = [
flask
freezegun
mock
oauth2client
pytestCheckHook
pytest-localserver
responses
];
pythonImportsCheck = [
"google.auth"
"google.oauth2"
];
meta = with lib; {
description = "Google Auth Python Library";
longDescription = ''
This library simplifies using Googles various server-to-server
authentication mechanisms to access Google APIs.
'';
homepage = "https://github.com/googleapis/google-auth-library-python";
changelog = "https://github.com/googleapis/google-auth-library-python/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}