depot/third_party/nixpkgs/pkgs/development/python-modules/python-ptrace/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

27 lines
583 B
Nix

{ 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 ];
};
}