summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-ptrace/default.nix
blob: 426b956880ada1b3cc769c0740f0520fd5f61e49 (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
{ stdenv
, buildPythonPackage
, fetchPypi
, six
}:

buildPythonPackage rec {
  pname = "python-ptrace";
  version = "0.9.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "9885e9003e4a99c90b3bca1be9306181c9b40a33fc6e17b81027709be5e5cb87";
  };

  # requires distorm, which is optionally
  doCheck = false;

  propagatedBuildInputs = [ six ];

  meta = with stdenv.lib; {
    description = "Python binding of ptrace library";
    homepage = https://github.com/vstinner/python-ptrace;
    license = licenses.gpl2;
    maintainers = with maintainers; [ mic92 ];
  };
}