ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / python-ptrace / default.nix
blob0ea759d92dcfa5809835d6d56631451d50d75f7a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , six
5 }:
7 buildPythonPackage rec {
8   pname = "python-ptrace";
9   version = "0.9.8";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "1e3bc6223f626aaacde8a7979732691c11b13012e702fee9ae16c87f71633eaa";
14   };
16   # requires distorm, which is optionally
17   doCheck = false;
19   propagatedBuildInputs = [ six ];
21   meta = with lib; {
22     description = "Python binding of ptrace library";
23     homepage = "https://github.com/vstinner/python-ptrace";
24     license = licenses.gpl2;
25     maintainers = with maintainers; [ mic92 ];
26   };