depot/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-testutils/default.nix
Default email 2969ca571a Project import generated by Copybara.
GitOrigin-RevId: 257cbbcd3ab7bd96f5d24d50adc807de7c82e06d
2021-01-09 11:05:03 +01:00

25 lines
659 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, google-auth, six }:
buildPythonPackage rec {
pname = "google-cloud-testutils";
version = "0.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "1bn1pz00lxym3vkl6l45b3nydpmfdvmylwggh2lspldrxwx39a0k";
};
propagatedBuildInputs = [ google-auth six ];
# does not contain tests
doCheck = false;
pythonImportsCheck = [ "test_utils" ];
meta = with stdenv.lib; {
description = "System test utilities for google-cloud-python";
homepage = "https://github.com/googleapis/python-test-utils";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}