1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, six
5}:
6
7buildPythonPackage rec {
8 pname = "python-ptrace";
9 version = "0.9.7";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "b998e3436cec975b6907552af6e7f3ff8779097e32d2b905696e5a9feb09e070";
14 };
15
16 # requires distorm, which is optionally
17 doCheck = false;
18
19 propagatedBuildInputs = [ six ];
20
21 meta = with stdenv.lib; {
22 description = "Python binding of ptrace library";
23 homepage = "https://github.com/vstinner/python-ptrace";
24 license = licenses.gpl2;
25 maintainers = with maintainers; [ mic92 ];
26 };
27}