blob: 7f22b14d12d3205584ca7115e733049b71ecc4c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
buildPythonPackage,
click,
fetchFromGitHub,
google-auth,
packaging,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "google-cloud-testutils";
version = "1.6.4";
pyproject = true;
src = fetchFromGitHub {
owner = "googleapis";
repo = "python-test-utils";
tag = "v${version}";
hash = "sha256-VTu/ElWZrSUrUBrfLPTBV4PMSQCRAyF9Ka7jKEqVzLk=";
};
build-system = [ setuptools ];
dependencies = [
click
google-auth
packaging
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "test_utils" ];
meta = {
description = "System test utilities for google-cloud-python";
mainProgram = "lower-bound-checker";
homepage = "https://github.com/googleapis/python-test-utils";
changelog = "https://github.com/googleapis/python-test-utils/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.sarahec ];
};
}
|