mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
python.pkgs.ropper: fix build
This commit is contained in:
parent
89e47937dc
commit
441839111a
1 changed files with 5 additions and 3 deletions
|
@ -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/;
|
||||||
|
|
Loading…
Reference in a new issue