nixpkgs/pkgs/development/tools/misc/lit/default.nix
2020-07-29 00:53:47 -05:00

26 lines
600 B
Nix

{ lib, python3 }:
python3.pkgs.buildPythonApplication rec {
pname = "lit";
version = "0.10.0";
src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "13s8v9s2f284fnh47xdyc75gq2i9pndl39q8v4wl7v7lwri2hv8r";
};
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 ];
};
}