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