mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +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
|
||||
, 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/;
|
||||
|
|
Loading…
Reference in a new issue