depot/third_party/nixpkgs/pkgs/development/python-modules/python-ptrace/default.nix
Default email 58f8944c92 Project import generated by Copybara.
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
2020-09-24 23:45:31 -05:00

27 lines
583 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "python-ptrace";
version = "0.9.7";
src = fetchPypi {
inherit pname version;
sha256 = "b998e3436cec975b6907552af6e7f3ff8779097e32d2b905696e5a9feb09e070";
};
# 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 ];
};
}