lol

Merge pull request #214835 from viraptor/mitmproxy-darwin

python310Packages.mitmproxy-wireguard: fix darwin build

authored by

Fabian Affolter and committed by
GitHub
63177139 11e9c497

+7
+7
pkgs/development/python-modules/mitmproxy-wireguard/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , stdenv 5 + , darwin 4 6 , pytestCheckHook 5 7 , pythonOlder 6 8 , rustPlatform ··· 20 22 rev = "refs/tags/${version}"; 21 23 hash = "sha256-Oq3jF4XeT58rad0MWmqucZZHVAshhA8PViQ+2Q9Shgc="; 22 24 }; 25 + 26 + buildInputs = lib.optionals stdenv.isDarwin [ 27 + darwin.libiconv 28 + darwin.apple_sdk.frameworks.Security 29 + ]; 23 30 24 31 nativeBuildInputs = [ 25 32 setuptools-rust