1{ lib 2, buildPythonPackage 3, fetchPypi 4, six 5}: 6 7buildPythonPackage rec { 8 pname = "python-ptrace"; 9 version = "0.9.8"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "1e3bc6223f626aaacde8a7979732691c11b13012e702fee9ae16c87f71633eaa"; 14 }; 15 16 # requires distorm, which is optionally 17 doCheck = false; 18 19 propagatedBuildInputs = [ six ]; 20 21 meta = with 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}