1{ lib, buildPythonPackage, fetchPypi, click, google-auth, six }:
2
3buildPythonPackage rec {
4 pname = "google-cloud-testutils";
5 version = "1.1.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "3d79051b6ca170c2a4f159bf56ac3f66c1e5360486121e72c06fdaa3911154bf";
10 };
11
12 propagatedBuildInputs = [ click google-auth six ];
13
14 # does not contain tests
15 doCheck = false;
16
17 pythonImportsCheck = [ "test_utils" ];
18
19 meta = with lib; {
20 description = "System test utilities for google-cloud-python";
21 homepage = "https://github.com/googleapis/python-test-utils";
22 license = licenses.asl20;
23 maintainers = with maintainers; [ SuperSandro2000 ];
24 };
25}