Unverified Commit b9c15427 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #199028 from siraben/pwntools-darwin

python3Packages.rpyc: disable checks on darwin, fix pwntools
parents 95cb71b7 a5a7a417
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
{ lib
, stdenv
, buildPythonPackage
, debugger
, fetchPypi
@@ -77,7 +78,7 @@ buildPythonPackage rec {
    installShellCompletion --bash extra/bash_completion.d/shellcraft
  '';

  postFixup = ''
  postFixup = lib.optionalString (!stdenv.isDarwin) ''
    mkdir -p "$out/bin"
    makeWrapper "${debugger}/bin/${debuggerName}" "$out/bin/pwntools-gdb"
  '';
+3 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, hatchling
@@ -50,6 +51,8 @@ buildPythonPackage rec {
    "rpyc"
  ];

  doCheck = !stdenv.isDarwin;

  meta = with lib; {
    description = "Remote Python Call (RPyC), a transparent and symmetric RPC library";
    homepage = "https://rpyc.readthedocs.org";