depot/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-testutils/default.nix
Default email 22017988c6 Project import generated by Copybara.
GitOrigin-RevId: c777cdf5c564015d5f63b09cc93bef4178b19b01
2022-04-27 11:35:20 +02:00

25 lines
682 B
Nix

{ lib, buildPythonPackage, fetchPypi, click, google-auth, packaging, 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 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 ];
};
}