pythonPackages.python-ptrace: init at 0.9.3

This commit is contained in:
Jörg Thalheim 2018-03-05 10:41:57 +00:00
parent 81fed4d582
commit a6d9548428
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "python-ptrace";
version = "0.9.3";
src = fetchPypi {
inherit pname version;
sha256 = "019jlpya2d2b3vbg037hnj4z0f564r7ibygayda7bm7qbpw0sa4g";
};
# requires distorm, which is optionally
doCheck = false;
meta = with stdenv.lib; {
description = "Python binding of ptrace library";
homepage = https://github.com/vstinner/python-ptrace;
license = licenses.gpl2;
maintainers = with maintainers; [ mic92 ];
};
}

View file

@ -14403,6 +14403,8 @@ in {
};
};
python-ptrace = callPackage ../development/python-modules/python-ptrace { };
python-wifi = buildPythonPackage rec {
name = "python-wifi-${version}";
version = "0.6.0";