forked from mirrors/nixpkgs
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, angr
|
|
, buildPythonPackage
|
|
, cmd2
|
|
, coreutils
|
|
, fetchFromGitHub
|
|
, pygments
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "angrcli";
|
|
version = "1.2.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fmagin";
|
|
repo = "angr-cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-a5ajUBQwt3xUNkeSOeGOAFf47wd4UVk+LcuAHGqbq4s=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
angr
|
|
cmd2
|
|
pygments
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
coreutils
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace tests/test_derefs.py \
|
|
--replace "/bin/ls" "${coreutils}/bin/ls"
|
|
'';
|
|
|
|
disabledTests = [
|
|
"test_sims"
|
|
"test_proper_termination"
|
|
"test_branching"
|
|
"test_morph"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"angrcli"
|
|
];
|
|
|
|
meta = with lib; {
|
|
broken = (stdenv.isLinux && stdenv.isAarch64);
|
|
description = "Python modules to allow easier interactive use of angr";
|
|
homepage = "https://github.com/fmagin/angr-cli";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|