biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / oauth2client / default.nix
blob895c988381e9b3fe480ec9763610553aea37f55c
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   six,
6   httplib2,
7   pyasn1-modules,
8   rsa,
9 }:
11 buildPythonPackage rec {
12   pname = "oauth2client";
13   version = "4.1.3";
14   format = "setuptools";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "d486741e451287f69568a4d26d70d9acd73a2bbfa275746c535b4209891cccc6";
19   };
21   propagatedBuildInputs = [
22     six
23     httplib2
24     pyasn1-modules
25     rsa
26   ];
27   doCheck = false;
29   meta = with lib; {
30     description = "Client library for OAuth 2.0";
31     homepage = "https://github.com/google/oauth2client/";
32     license = licenses.asl20;
33   };