12 buildPythonPackage rec {
13 pname = "pydata-google-auth";
17 disabled = pythonOlder "3.7";
19 src = fetchFromGitHub {
20 repo = "pydata-google-auth";
22 rev = "refs/tags/${version}";
23 hash = "sha256-Wo+tXbzOuz/cW8GuWoSxLA/Lr2S9NMdePa8tIV39mbY=";
27 # Remove vendorized versioneer.py
41 # tests require network access
44 pythonImportsCheck = [ "pydata_google_auth" ];
47 description = "Helpers for authenticating to Google APIs";
48 homepage = "https://github.com/pydata/pydata-google-auth";
49 changelog = "https://github.com/pydata/pydata-google-auth/releases/tag/${version}";
50 license = licenses.bsd3;
51 maintainers = with maintainers; [ cpcloud ];