pythonPackages.ptrace: add missing six dep
This commit is contained in:
parent
e07237a1b0
commit
1272561be8
@ -1,6 +1,7 @@
|
||||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, six
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@ -15,6 +16,8 @@ buildPythonPackage rec {
|
||||
# requires distorm, which is optionally
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Python binding of ptrace library";
|
||||
homepage = https://github.com/vstinner/python-ptrace;
|
||||
|
Loading…
Reference in New Issue
Block a user