1{ stdenv
2, buildPythonPackage
3, fetchPypi
4, six
5}:
6
7buildPythonPackage rec {
8 pname = "python-ptrace";
9 version = "0.9.4";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "9885e9003e4a99c90b3bca1be9306181c9b40a33fc6e17b81027709be5e5cb87";
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}