depot/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-testutils/default.nix
Default email 4cb23072fc Project import generated by Copybara.
GitOrigin-RevId: 6d8215281b2f87a5af9ed7425a26ac575da0438f
2022-01-20 00:45:15 +01:00

25 lines
661 B
Nix

{ lib, buildPythonPackage, fetchPypi, click, google-auth, six }:
buildPythonPackage rec {
pname = "google-cloud-testutils";
version = "1.3.1";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-X85NRgGZt7+OpL4poOyS+UWec4fuABiTxEYyFpkUpqs=";
};
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 ];
};
}