nixpkgs/pkgs/development/python-modules/ropper/default.nix
R. RyanTM 3e67b3c269 python27Packages.ropper: 1.12.1 -> 1.12.5
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ropper/versions
2019-10-08 13:31:11 -07:00

33 lines
828 B
Nix

{ stdenv
, buildPythonApplication
, fetchPypi
, capstone
, filebytes
, pytest
}:
buildPythonApplication rec {
pname = "ropper";
version = "1.12.5";
src = fetchPypi {
inherit pname version;
sha256 = "063lki438nsaylgqr5s785j6rbfqnyzb5bxnr8ixhmpk5irf3sqd";
};
# 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.bsd3;
description = "Show information about files in different file formats";
maintainers = with maintainers; [ bennofs ];
};
}