aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/google_cloud_core/default.nix
blob: 1ad08ea05af4fc467e5045d425341be5c07c7523 (plain)
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
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytestCheckHook, python
, google_api_core, grpcio, mock }:

buildPythonPackage rec {
  pname = "google-cloud-core";
  version = "1.4.3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "21afb70c1b0bce8eeb8abb5dca63c5fd37fc8aea18f4b6d60e803bd3d27e6b80";
  };

  disabled = pythonOlder "3.5";

  propagatedBuildInputs = [ google_api_core grpcio ];
  checkInputs = [ google_api_core mock pytestCheckHook ];

  pythonImportsCheck = [ "google.cloud" ];

  # prevent google directory from shadowing google imports
  preCheck = ''
    rm -r google
  '';

  meta = with stdenv.lib; {
    description = "API Client library for Google Cloud: Core Helpers";
    homepage = "https://github.com/googleapis/python-cloud-core";
    license = licenses.asl20;
    maintainers = with maintainers; [ ];
  };
}