33 lines
841 B
Nix
33 lines
841 B
Nix
{ stdenv
|
|
, buildPythonApplication
|
|
, fetchPypi
|
|
, capstone
|
|
, filebytes
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "ropper";
|
|
version = "1.11.10";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "b8d1439d8a6ef7b93718472b0288ee88a5953723046772f035fe989b1c1e5d6e";
|
|
};
|
|
# XXX tests rely on user-writeable /dev/shm to obtain process locks and return PermissionError otherwise
|
|
# workaround: sudo chmod 777 /dev/shm
|
|
checkPhase = ''
|
|
py.test testcases
|
|
'';
|
|
doCheck = false; # Tests not included in archive
|
|
|
|
checkInputs = [pytest];
|
|
propagatedBuildInputs = [ capstone filebytes ];
|
|
meta = with stdenv.lib; {
|
|
homepage = https://scoding.de/ropper/;
|
|
license = licenses.gpl2;
|
|
description = "Show information about files in different file formats";
|
|
maintainers = with maintainers; [ bennofs ];
|
|
};
|
|
}
|