depot/third_party/nixpkgs/pkgs/development/python-modules/google-auth-httplib2/default.nix
Default email 849ee4d900 Project import generated by Copybara.
GitOrigin-RevId: 9e377a6ce42dccd9b624ae4ce8f978dc892ba0e2
2021-04-08 18:26:57 +02:00

40 lines
761 B
Nix

{ lib
, isPy3k
, buildPythonPackage
, fetchPypi
, flask
, google-auth
, httplib2
, mock
, pytestCheckHook
, pytest-localserver
}:
buildPythonPackage rec {
pname = "google-auth-httplib2";
version = "0.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-oHw5/WMr7KzT8HcY39YCG/OWl48DrTzkMh0GABXMMKw=";
};
propagatedBuildInputs = [
google-auth
httplib2
];
checkInputs = [
flask
mock
pytestCheckHook
pytest-localserver
];
meta = with lib; {
description = "Google Authentication Library: httplib2 transport";
homepage = "https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}