98eb3e9ef5
GitOrigin-RevId: 00d80d13810dbfea8ab4ed1009b09100cca86ba8
41 lines
802 B
Nix
41 lines
802 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
capstone,
|
|
filebytes,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "ropper";
|
|
version = "1.13.8";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sashs";
|
|
repo = "Ropper";
|
|
rev = "v${version}";
|
|
hash = "sha256-agbqP5O9QEP5UKkaWI5HxAlMsCBPKNSLnAAo2WFDXS8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
capstone
|
|
filebytes
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "ropper" ];
|
|
|
|
meta = with lib; {
|
|
description = "Show information about files in different file formats";
|
|
mainProgram = "ropper";
|
|
homepage = "https://scoding.de/ropper/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ bennofs ];
|
|
};
|
|
}
|