about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/python-ptrace/default.nix
blob: 496987c94e4a4c046dfd8f9501a30d262f608654 (plain) (blame)
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
31
{ 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 = with lib; {
    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 = licenses.gpl2;
    maintainers = with maintainers; [ mic92 ];
  };
}