blob: 700511ff30b19a4b139e3b52d205172566ae60a7 (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "filecheck";
version = "1.0.3";
pyproject = true;
src = fetchFromGitHub {
owner = "AntonLydike";
repo = "filecheck";
tag = "v${version}";
hash = "sha256-oOGQIEPIHL4xQRVKOw+8Z8QSowXlavVnck+IOWA9qd8=";
};
build-system = [ poetry-core ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "filecheck" ];
meta = {
changelog = "https://github.com/antonlydike/filecheck/releases/tag/${src.tag}";
homepage = "https://github.com/antonlydike/filecheck";
license = lib.licenses.asl20;
description = "Python-native clone of LLVMs FileCheck tool";
mainProgram = "filecheck";
maintainers = with lib.maintainers; [ yorickvp ];
};
}
|