depot/third_party/nixpkgs/pkgs/development/python-modules/lit/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

38 lines
880 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
python,
}:
buildPythonPackage rec {
pname = "lit";
version = "18.1.7";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-Ld2b4mvcxtoDrqPsRWxpRetaCdveVI01AL/5uO1HY7s=";
};
nativeBuildInputs = [ setuptools ];
passthru = {
inherit python;
};
# Non-standard test suite. Needs custom checkPhase.
# Needs LLVM's `FileCheck` and `not`: `$out/bin/lit tests`
# There should be `llvmPackages.lit` since older LLVM versions may
# have the possibility of not correctly interfacing with newer lit versions
doCheck = false;
meta = {
description = "Portable tool for executing LLVM and Clang style test suites";
mainProgram = "lit";
homepage = "http://llvm.org/docs/CommandGuide/lit.html";
license = lib.licenses.ncsa;
maintainers = [ ];
};
}