depot/third_party/nixpkgs/pkgs/development/python-modules/google-auth-httplib2/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

46 lines
967 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; [ ];
};
}