nixpkgs-suyu/pkgs/development/tools/misc/cvise/default.nix

53 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, buildPythonApplication, fetchFromGitHub, bash, cmake, flex
2021-05-09 00:52:23 +02:00
, libclang, llvm, unifdef
2021-02-28 05:12:14 +01:00
, pebble, psutil, pytestCheckHook, pytest-flake8
}:
buildPythonApplication rec {
pname = "cvise";
2021-03-10 21:02:42 +01:00
version = "2.3.0";
2021-02-28 05:12:14 +01:00
src = fetchFromGitHub {
owner = "marxin";
repo = "cvise";
rev = "v${version}";
2021-03-10 21:02:42 +01:00
sha256 = "1x2i8nv0nncgvr07znhh2slngbrg8qcsz2zqx76bcyq9hssn6yal";
2021-02-28 05:12:14 +01:00
};
patches = [
# Refer to unifdef by absolute path.
./unifdef.patch
];
2021-05-09 00:52:23 +02:00
nativeBuildInputs = [ cmake flex llvm.dev ];
buildInputs = [ bash libclang llvm llvm.dev unifdef ];
2021-02-28 05:12:14 +01:00
propagatedBuildInputs = [ pebble psutil ];
checkInputs = [ pytestCheckHook pytest-flake8 unifdef ];
# 'cvise --command=...' generates a script with hardcoded shebang.
postPatch = ''
substituteInPlace cvise.py \
--replace "#!/bin/bash" "#!${bash}/bin/bash"
'';
2021-02-28 05:12:14 +01:00
preCheck = ''
patchShebangs cvise.py
'';
disabledTests = [
# Needs gcc, fails when run noninteractively (without tty).
"test_simple_reduction"
];
dontUsePipInstall = true;
dontUseSetuptoolsBuild = true;
dontUseSetuptoolsCheck = true;
meta = with lib; {
homepage = "https://github.com/marxin/cvise";
description = "Super-parallel Python port of C-Reduce";
license = licenses.ncsa;
maintainers = with maintainers; [ orivej ];
platforms = platforms.linux;
};
}