depot/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-testutils/default.nix
Default email 9405df4a82 Project import generated by Copybara.
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
2021-04-26 15:14:03 -04:00

25 lines
674 B
Nix

{ lib, buildPythonPackage, fetchPypi, click, google-auth, six }:
buildPythonPackage rec {
pname = "google-cloud-testutils";
version = "0.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "a23be7cc23bccb1ae6debb74a47dc5b51858b6322fcf034ca92fe7a4acb896f3";
};
propagatedBuildInputs = [ click 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 ];
};
}