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