Files
nixpkgs/pkgs/development/python-modules/oauth2client/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

35 lines
585 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
six,
httplib2,
pyasn1-modules,
rsa,
}:
buildPythonPackage rec {
pname = "oauth2client";
version = "4.1.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "d486741e451287f69568a4d26d70d9acd73a2bbfa275746c535b4209891cccc6";
};
propagatedBuildInputs = [
six
httplib2
pyasn1-modules
rsa
];
doCheck = false;
meta = {
description = "Client library for OAuth 2.0";
homepage = "https://github.com/google/oauth2client/";
license = lib.licenses.asl20;
};
}