python.pkgs.ropper: fix build

This commit is contained in:
Frederik Rietdijk 2017-12-31 11:20:34 +01:00
parent 89e47937dc
commit 441839111a

View File

@ -3,10 +3,10 @@
, fetchPypi
, capstone
, filebytes
, pytest }:
, pytest
}:
buildPythonApplication rec {
name = "${pname}-${version}";
pname = "ropper";
version = "1.11.2";
@ -19,7 +19,9 @@ buildPythonApplication rec {
checkPhase = ''
py.test testcases
'';
buildInputs = [pytest];
doCheck = false; # Tests not included in archive
checkInputs = [pytest];
propagatedBuildInputs = [ capstone filebytes ];
meta = with stdenv.lib; {
homepage = https://scoding.de/ropper/;