about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-ptrace
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-10-16 16:49:41 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-18 09:54:02 +0200
commit1272561be8e2983f6f565633789fcf5b04c3f060 (patch)
tree7960f51e27d122053d56afd72c178a2e8aabc8cc /pkgs/development/python-modules/python-ptrace
parente07237a1b00cca3df135f7c4a81bae2d3b86bdef (diff)
pythonPackages.ptrace: add missing six dep
Diffstat (limited to 'pkgs/development/python-modules/python-ptrace')
-rw-r--r--pkgs/development/python-modules/python-ptrace/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-ptrace/default.nix b/pkgs/development/python-modules/python-ptrace/default.nix
index e9fafd9b99a64..426b956880ada 100644
--- a/pkgs/development/python-modules/python-ptrace/default.nix
+++ b/pkgs/development/python-modules/python-ptrace/default.nix
@@ -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;