Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / python-ptrace / default.nix
blob496987c94e4a4c046dfd8f9501a30d262f608654
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , setuptools
5 }:
7 buildPythonPackage rec {
8   pname = "python-ptrace";
9   version = "0.9.9";
10   pyproject = true;
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-Vrv+9E6vOne+SBOMyldnzfRx6CeP4Umfm3LxUZB/Jc8=";
15   };
17   nativeBuildInputs = [
18     setuptools
19   ];
21   # requires distorm, which is optionally
22   doCheck = false;
24   meta = with lib; {
25     description = "Python binding of ptrace library";
26     homepage = "https://github.com/vstinner/python-ptrace";
27     changelog = "https://github.com/vstinner/python-ptrace/blob/${version}/doc/changelog.rst";
28     license = licenses.gpl2;
29     maintainers = with maintainers; [ mic92 ];
30   };