nixpkgs/pkgs/development/tools/misc/lit/default.nix

26 lines
612 B
Nix
Raw Normal View History

2020-03-31 16:41:19 +00:00
{ lib, python3 }:
2017-03-08 17:00:11 +00:00
2020-03-31 16:41:19 +00:00
python3.pkgs.buildPythonApplication rec {
2017-03-08 17:00:11 +00:00
pname = "lit";
2021-12-03 15:39:23 +00:00
version = "13.0.0";
2017-03-08 17:00:11 +00:00
2020-03-31 16:41:19 +00:00
src = python3.pkgs.fetchPypi {
2017-03-08 17:00:11 +00:00
inherit pname version;
2021-12-03 15:39:23 +00:00
sha256 = "4da976f3d114e4ba6ba06cbe660ce1393230f4519c4df15b90bc1840f00e4195";
2017-03-08 17:00:11 +00:00
};
2020-03-31 17:34:04 +00:00
passthru = {
python = python3;
};
2017-03-08 17:00:11 +00:00
# Non-standard test suite. Needs custom checkPhase.
doCheck = false;
meta = {
description = "Portable tool for executing LLVM and Clang style test suites";
2020-03-31 04:47:15 +00:00
homepage = "http://llvm.org/docs/CommandGuide/lit.html";
2017-03-08 17:00:11 +00:00
license = lib.licenses.ncsa;
maintainers = with lib.maintainers; [ dtzWill ];
};
}