depot/third_party/nixpkgs/pkgs/development/tools/misc/lit/default.nix
Default email 8a45d4525b Project import generated by Copybara.
GitOrigin-RevId: 710fed5a2483f945b14f4a58af2cd3676b42d8c8
2022-03-30 11:31:56 +02:00

25 lines
612 B
Nix

{ lib, python3 }:
python3.pkgs.buildPythonApplication rec {
pname = "lit";
version = "14.0.0";
src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "45e08ce87b0ea56ab632aa02fa857418a5dd241a711c7c756878b73a130c3efe";
};
passthru = {
python = python3;
};
# Non-standard test suite. Needs custom checkPhase.
doCheck = false;
meta = {
description = "Portable tool for executing LLVM and Clang style test suites";
homepage = "http://llvm.org/docs/CommandGuide/lit.html";
license = lib.licenses.ncsa;
maintainers = with lib.maintainers; [ dtzWill ];
};
}