pythonPackages.ptrace: add missing six dep

This commit is contained in:
Frederik Rietdijk 2019-10-16 16:49:41 +02:00
parent e07237a1b0
commit 1272561be8

View File

@ -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;