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