depot/third_party/nixpkgs/pkgs/development/python-modules/python-ptrace/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

31 lines
689 B
Nix

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