Skip to content

Commit a6d9548

Browse files
committedMar 5, 2018
pythonPackages.python-ptrace: init at 0.9.3
1 parent 81fed4d commit a6d9548

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
 
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{ stdenv
2+
, buildPythonPackage
3+
, fetchPypi
4+
}:
5+
6+
buildPythonPackage rec {
7+
pname = "python-ptrace";
8+
version = "0.9.3";
9+
10+
src = fetchPypi {
11+
inherit pname version;
12+
sha256 = "019jlpya2d2b3vbg037hnj4z0f564r7ibygayda7bm7qbpw0sa4g";
13+
};
14+
15+
# requires distorm, which is optionally
16+
doCheck = false;
17+
18+
meta = with stdenv.lib; {
19+
description = "Python binding of ptrace library";
20+
homepage = https://github.com/vstinner/python-ptrace;
21+
license = licenses.gpl2;
22+
maintainers = with maintainers; [ mic92 ];
23+
};
24+
}

Diff for: ‎pkgs/top-level/python-packages.nix

+2
Original file line numberDiff line numberDiff line change
@@ -14403,6 +14403,8 @@ in {
1440314403
};
1440414404
};
1440514405

14406+
python-ptrace = callPackage ../development/python-modules/python-ptrace { };
14407+
1440614408
python-wifi = buildPythonPackage rec {
1440714409
name = "python-wifi-${version}";
1440814410
version = "0.6.0";

0 commit comments

Comments
 (0)
Please sign in to comment.