depot/third_party/nixpkgs/pkgs/development/python-modules/google-auth-httplib2/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

47 lines
979 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
flask,
google-auth,
httplib2,
mock,
pytest-localserver,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "google-auth-httplib2";
version = "0.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-OKp7rfSPl08euYYXlOnAyyoFEaTsBnmx+IbRCPVkDgU=";
};
propagatedBuildInputs = [
google-auth
httplib2
];
__darwinAllowLocalNetworking = true;
nativeCheckInputs = [
flask
mock
pytestCheckHook
pytest-localserver
];
meta = with lib; {
description = "Google Authentication Library: httplib2 transport";
homepage = "https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2";
changelog = "https://github.com/googleapis/google-auth-library-python-httplib2/blob/v${version}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}