depot/third_party/nixpkgs/pkgs/development/python-modules/pydata-google-auth/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

53 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
google-auth-oauthlib,
google-auth,
pythonOlder,
setuptools,
versioneer,
}:
buildPythonPackage rec {
pname = "pydata-google-auth";
version = "1.8.2";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
repo = "pydata-google-auth";
owner = "pydata";
rev = "refs/tags/${version}";
hash = "sha256-Wo+tXbzOuz/cW8GuWoSxLA/Lr2S9NMdePa8tIV39mbY=";
};
postPatch = ''
# Remove vendorized versioneer.py
rm versioneer.py
'';
build-system = [
setuptools
versioneer
];
dependencies = [
google-auth
google-auth-oauthlib
];
# tests require network access
doCheck = false;
pythonImportsCheck = [ "pydata_google_auth" ];
meta = with lib; {
description = "Helpers for authenticating to Google APIs";
homepage = "https://github.com/pydata/pydata-google-auth";
changelog = "https://github.com/pydata/pydata-google-auth/releases/tag/${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ cpcloud ];
};
}