Skip to content

Commit

Permalink
pythonPackages.python-ptrace: init at 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Mar 5, 2018
1 parent 81fed4d commit a6d9548
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/development/python-modules/python-ptrace/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Expand Up @@ -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";
Expand Down

0 comments on commit a6d9548

Please sign in to comment.