blob: 6b651447ca66b752c925d80fad51e0f861d32272 (
about) (
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.5.4";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "test_results_parser";
hash = "sha256-L7/YCaLB90Y2AUaAm23zBpDJkkY9fUPnsf7THBp8FbQ=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit pname version src;
hash = "sha256-v82SRGqdcwyaRYpQhDETA/UZYSGD+FBZpysU7zfulrM=";
};
nativeBuildInputs = with rustPlatform; [
cargoSetupHook
maturinBuildHook
];
pythonImpotsCheck = [
"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 ];
};
}
|