about summary refs log tree commit diff
path: root/pkgs/development/python-modules/gcs-oauth2-boto-plugin/default.nix
blob: 9d93efe8897dc224ed4e9b5587e3507ebac202c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
  lib,
  boto,
  buildPythonPackage,
  fasteners,
  fetchFromGitHub,
  freezegun,
  google-reauth,
  httplib2,
  oauth2client,
  pyopenssl,
  pytestCheckHook,
  pythonOlder,
  pythonRelaxDepsHook,
  retry-decorator,
  rsa,
  six,
}:

buildPythonPackage rec {
  pname = "gcs-oauth2-boto-plugin";
  version = "3.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "GoogleCloudPlatform";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-slTxh2j9VhLiSyiTmJIFFakzpzH/+mgilDRxx0VqqKQ=";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace "rsa==4.7.2" "rsa" \
      --replace "version='2.7'" "version='${version}'"
  '';

  propagatedBuildInputs = [
    boto
    freezegun
    google-reauth
    httplib2
    oauth2client
    pyopenssl
    retry-decorator
    rsa
    six
  ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [ "gcs_oauth2_boto_plugin" ];

  meta = with lib; {
    description = "Auth plugin allowing use the use of OAuth 2.0 credentials for Google Cloud Storage";
    homepage = "https://github.com/GoogleCloudPlatform/gcs-oauth2-boto-plugin";
    changelog = "https://github.com/GoogleCloudPlatform/gcs-oauth2-boto-plugin/releases/tag/v${version}";
    license = with licenses; [ asl20 ];
    maintainers = with maintainers; [ fab ];
  };
}