2021-04-05 05:00:30 +02:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, click, google-auth, six }:
|
2018-11-02 14:33:49 -04:00
|
|
|
|
2020-11-02 17:19:08 -08:00
|
|
|
buildPythonPackage rec {
|
2018-11-02 14:33:49 -04:00
|
|
|
pname = "google-cloud-testutils";
|
2021-03-24 10:28:13 +01:00
|
|
|
version = "0.2.0";
|
2018-11-02 14:33:49 -04:00
|
|
|
|
2020-11-02 17:19:08 -08:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-24 10:28:13 +01:00
|
|
|
sha256 = "a23be7cc23bccb1ae6debb74a47dc5b51858b6322fcf034ca92fe7a4acb896f3";
|
2018-11-02 14:33:49 -04:00
|
|
|
};
|
|
|
|
|
2021-04-05 05:00:30 +02:00
|
|
|
propagatedBuildInputs = [ click google-auth six ];
|
2018-11-02 14:33:49 -04:00
|
|
|
|
2021-01-05 13:20:23 +01:00
|
|
|
# does not contain tests
|
2020-11-02 17:19:08 -08:00
|
|
|
doCheck = false;
|
2018-11-02 14:33:49 -04:00
|
|
|
|
2021-01-05 13:20:23 +01:00
|
|
|
pythonImportsCheck = [ "test_utils" ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-11-02 14:33:49 -04:00
|
|
|
description = "System test utilities for google-cloud-python";
|
2020-11-02 17:19:08 -08:00
|
|
|
homepage = "https://github.com/googleapis/python-test-utils";
|
2018-11-02 14:33:49 -04:00
|
|
|
license = licenses.asl20;
|
2021-01-05 13:20:23 +01:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2018-11-02 14:33:49 -04:00
|
|
|
};
|
|
|
|
}
|