9 buildPythonPackage rec {
14 src = fetchFromGitHub {
15 owner = "mull-project";
16 repo = "FileCheck.py";
17 rev = "refs/tags/v${version}";
18 hash = "sha256-VbMlCqGd3MVpj0jEKjSGC2L0s/3e/d53b+2eZcXZneo=";
21 nativeBuildInputs = [ hatchling ];
23 nativeCheckInputs = [ pytestCheckHook ];
25 pythonImportsCheck = [ "filecheck" ];
28 changelog = "https://github.com/mull-project/FileCheck.py/releases/tag/v${version}";
29 homepage = "https://github.com/mull-project/FileCheck.py";
30 license = licenses.asl20;
31 description = "Python port of LLVM's FileCheck, flexible pattern matching file verifier";
32 mainProgram = "filecheck";
33 maintainers = with maintainers; [ yorickvp ];