nixpkgs/pkgs/development/python-modules/ropper/default.nix
2018-12-03 16:50:35 +01:00

33 lines
840 B
Nix

{ stdenv
, buildPythonApplication
, fetchPypi
, capstone
, filebytes
, pytest
}:
buildPythonApplication rec {
pname = "ropper";
version = "1.11.8";
src = fetchPypi {
inherit pname version;
sha256 = "f2ba5ff34ebc5faaa87d34b58178706a13a08e848126197c0fdb0af7822f93a2";
};
# 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 ];
};
}