blob: 9b280b501c3cec58b31910b7f0d333a6d99c792d (
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
|
{
buildPythonPackage,
fetchPypi,
lib,
pytestCheckHook,
rustPlatform,
}:
buildPythonPackage rec {
pname = "test-results-parser";
version = "0.6.1";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "test_results_parser";
hash = "sha256-Xqktx66EvYnpw/w3UxfYXJgfnROcPMobCv4W2W405/Y=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-xnX9YwRHo5vFcF4HDj9K/hLV88ZB0UZdpx8RdA+EmrU=";
};
nativeBuildInputs = with rustPlatform; [
cargoSetupHook
maturinBuildHook
];
pythonImportsCheck = [
"test_results_parser"
];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = "Codecov test results parser";
homepage = "https://github.com/codecov/test-results-parser";
license = lib.licenses.fsl11Asl20;
maintainers = with lib.maintainers; [ veehaitch ];
};
}
|