mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
Merge pull request #295742 from r-ryantm/auto-update/python312Packages.python-ptrace
python312Packages.python-ptrace: 0.9.8 -> 0.9.9
This commit is contained in:
commit
6aea9769ea
@ -1,27 +1,30 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, six
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-ptrace";
|
||||
version = "0.9.8";
|
||||
format = "setuptools";
|
||||
version = "0.9.9";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1e3bc6223f626aaacde8a7979732691c11b13012e702fee9ae16c87f71633eaa";
|
||||
hash = "sha256-Vrv+9E6vOne+SBOMyldnzfRx6CeP4Umfm3LxUZB/Jc8=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
# requires distorm, which is optionally
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user