02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
25 lines
682 B
Nix
25 lines
682 B
Nix
{ lib, buildPythonPackage, fetchPypi, click, google-auth, packaging, six }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "google-cloud-testutils";
|
|
version = "1.3.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-bRjvNNmvsBy0sR4C0DoC/n7A9ez6AfXUJrXZiHKkz0g=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ click google-auth packaging 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 ];
|
|
};
|
|
}
|