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

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

  src = fetchPypi {
    inherit pname version;
    sha256 = "019jlpya2d2b3vbg037hnj4z0f564r7ibygayda7bm7qbpw0sa4g";
  };

  # requires distorm, which is optionally
  doCheck = false;

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