Files
nixpkgs/pkgs/development/python-modules/python-ptrace/default.nix
T

28 lines
573 B
Nix
Raw Normal View History

2021-01-25 09:26:54 +01:00
{ lib
2018-03-05 10:41:57 +00:00
, buildPythonPackage
, fetchPypi
2019-10-16 16:49:41 +02:00
, six
2018-03-05 10:41:57 +00:00
}:
buildPythonPackage rec {
pname = "python-ptrace";
2020-08-16 19:31:13 +02:00
version = "0.9.7";
2018-03-05 10:41:57 +00:00
src = fetchPypi {
inherit pname version;
2020-08-16 19:31:13 +02:00
sha256 = "b998e3436cec975b6907552af6e7f3ff8779097e32d2b905696e5a9feb09e070";
2018-03-05 10:41:57 +00:00
};
# requires distorm, which is optionally
doCheck = false;
2019-10-16 16:49:41 +02:00
propagatedBuildInputs = [ six ];
meta = with lib; {
2018-03-05 10:41:57 +00:00
description = "Python binding of ptrace library";
homepage = "https://github.com/vstinner/python-ptrace";
2018-03-05 10:41:57 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ mic92 ];
};
}