2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, google-auth, six }:
|
2018-11-02 18:33:49 +00:00
|
|
|
|
2020-11-03 01:19:08 +00:00
|
|
|
buildPythonPackage rec {
|
2018-11-02 18:33:49 +00:00
|
|
|
pname = "google-cloud-testutils";
|
2020-11-03 01:19:08 +00:00
|
|
|
version = "0.1.0";
|
2018-11-02 18:33:49 +00:00
|
|
|
|
2020-11-03 01:19:08 +00:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "1bn1pz00lxym3vkl6l45b3nydpmfdvmylwggh2lspldrxwx39a0k";
|
2018-11-02 18:33:49 +00:00
|
|
|
};
|
|
|
|
|
2021-01-06 09:46:48 +00:00
|
|
|
propagatedBuildInputs = [ google-auth six ];
|
2018-11-02 18:33:49 +00:00
|
|
|
|
2021-01-05 12:20:23 +00:00
|
|
|
# does not contain tests
|
2020-11-03 01:19:08 +00:00
|
|
|
doCheck = false;
|
2018-11-02 18:33:49 +00:00
|
|
|
|
2021-01-05 12:20:23 +00:00
|
|
|
pythonImportsCheck = [ "test_utils" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-11-02 18:33:49 +00:00
|
|
|
description = "System test utilities for google-cloud-python";
|
2020-11-03 01:19:08 +00:00
|
|
|
homepage = "https://github.com/googleapis/python-test-utils";
|
2018-11-02 18:33:49 +00:00
|
|
|
license = licenses.asl20;
|
2021-01-05 12:20:23 +00:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2018-11-02 18:33:49 +00:00
|
|
|
};
|
|
|
|
}
|