1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 setuptools, 6}: 7 8buildPythonPackage rec { 9 pname = "python-ptrace"; 10 version = "0.9.9"; 11 pyproject = true; 12 13 src = fetchPypi { 14 inherit pname version; 15 hash = "sha256-Vrv+9E6vOne+SBOMyldnzfRx6CeP4Umfm3LxUZB/Jc8="; 16 }; 17 18 nativeBuildInputs = [ setuptools ]; 19 20 # requires distorm, which is optionally 21 doCheck = false; 22 23 meta = with lib; { 24 description = "Python binding of ptrace library"; 25 homepage = "https://github.com/vstinner/python-ptrace"; 26 changelog = "https://github.com/vstinner/python-ptrace/blob/${version}/doc/changelog.rst"; 27 license = licenses.gpl2; 28 maintainers = with maintainers; [ mic92 ]; 29 }; 30}