pythonPackages.python-ptrace: init at 0.9.3
This commit is contained in:
parent
81fed4d582
commit
a6d9548428
24
pkgs/development/python-modules/python-ptrace/default.nix
Normal file
24
pkgs/development/python-modules/python-ptrace/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -14403,6 +14403,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
python-ptrace = callPackage ../development/python-modules/python-ptrace { };
|
||||||
|
|
||||||
python-wifi = buildPythonPackage rec {
|
python-wifi = buildPythonPackage rec {
|
||||||
name = "python-wifi-${version}";
|
name = "python-wifi-${version}";
|
||||||
version = "0.6.0";
|
version = "0.6.0";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user