nixpkgs/pkgs/development/python-modules/python-ptrace/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

29 lines
598 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, six
}:
buildPythonPackage rec {
pname = "python-ptrace";
version = "0.9.8";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1e3bc6223f626aaacde8a7979732691c11b13012e702fee9ae16c87f71633eaa";
};
# 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";
license = licenses.gpl2;
maintainers = with maintainers; [ mic92 ];
};
}