summary refs log tree commit diff
path: root/pkgs/development/python-modules/google-cloud-testutils/default.nix
blob: 2380e9183b7338150f4d127ae23767182f311c6d (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
{ lib, buildPythonPackage, fetchPypi, google-auth, six }:

buildPythonPackage rec {
  pname = "google-cloud-testutils";
  version = "0.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1bn1pz00lxym3vkl6l45b3nydpmfdvmylwggh2lspldrxwx39a0k";
  };

  propagatedBuildInputs = [ google-auth six ];

  # does not contain tests
  doCheck = false;

  pythonImportsCheck = [ "test_utils" ];

  meta = with lib; {
    description = "System test utilities for google-cloud-python";
    homepage = "https://github.com/googleapis/python-test-utils";
    license = licenses.asl20;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}