2021-02-13 14:23:35 +00:00
|
|
|
{ lib
|
2021-03-09 03:18:52 +00:00
|
|
|
, stdenv
|
2021-02-13 14:23:35 +00:00
|
|
|
, archinfo
|
|
|
|
, bitstring
|
|
|
|
, buildPythonPackage
|
2021-04-22 02:08:21 +00:00
|
|
|
, cffi
|
|
|
|
, fetchPypi
|
2021-02-13 14:23:35 +00:00
|
|
|
, future
|
|
|
|
, pycparser
|
2022-01-19 23:45:15 +00:00
|
|
|
, pythonOlder
|
2022-09-30 11:47:45 +00:00
|
|
|
, setuptools
|
2021-02-13 14:23:35 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyvex";
|
2023-08-04 22:07:22 +00:00
|
|
|
version = "9.2.62";
|
2022-04-27 09:35:20 +00:00
|
|
|
format = "pyproject";
|
2022-01-19 23:45:15 +00:00
|
|
|
|
2022-09-09 14:08:57 +00:00
|
|
|
disabled = pythonOlder "3.8";
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-08-04 22:07:22 +00:00
|
|
|
hash = "sha256-eBmmXdtYeG6O8Wdt0Gye78/6dt+XZznXyEzlv9WFwcI=";
|
2021-02-13 14:23:35 +00:00
|
|
|
};
|
|
|
|
|
2022-09-30 11:47:45 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
2021-02-13 14:23:35 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
archinfo
|
|
|
|
bitstring
|
|
|
|
cffi
|
|
|
|
future
|
|
|
|
pycparser
|
|
|
|
];
|
|
|
|
|
2022-01-19 23:45:15 +00:00
|
|
|
postPatch = lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace vex/Makefile-gcc \
|
|
|
|
--replace '/usr/bin/ar' 'ar'
|
|
|
|
'';
|
|
|
|
|
|
|
|
setupPyBuildFlags = lib.optionals stdenv.isLinux [
|
|
|
|
"--plat-name"
|
|
|
|
"linux"
|
|
|
|
];
|
|
|
|
|
2021-04-25 03:57:28 +00:00
|
|
|
preBuild = ''
|
|
|
|
export CC=${stdenv.cc.targetPrefix}cc
|
2022-01-19 23:45:15 +00:00
|
|
|
substituteInPlace pyvex_c/Makefile \
|
|
|
|
--replace 'AR=ar' 'AR=${stdenv.cc.targetPrefix}ar'
|
2021-04-22 02:08:21 +00:00
|
|
|
'';
|
|
|
|
|
2021-02-13 14:23:35 +00:00
|
|
|
# No tests are available on PyPI, GitHub release has tests
|
|
|
|
# Switch to GitHub release after all angr parts are present
|
|
|
|
doCheck = false;
|
2022-01-19 23:45:15 +00:00
|
|
|
|
|
|
|
pythonImportsCheck = [
|
|
|
|
"pyvex"
|
|
|
|
];
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Python interface to libVEX and VEX IR";
|
|
|
|
homepage = "https://github.com/angr/pyvex";
|
|
|
|
license = with licenses; [ bsd2 gpl3Plus lgpl3Plus ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
|
|
|
};
|
|
|
|
}
|