bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
38 lines
953 B
Nix
38 lines
953 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
hatchling,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mitmproxy-macos";
|
|
version = "0.5.1";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mitmproxy";
|
|
repo = "mitmproxy_rs";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-nrm1T2yaGVmYsubwNJHPnPDC/A/jYiKVzwBKmuc9MD4=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/mitmproxy-macos";
|
|
|
|
nativeBuildInputs = [ hatchling ];
|
|
|
|
pythonImportsCheck = [ "mitmproxy_macos" ];
|
|
|
|
meta = with lib; {
|
|
description = "MacOS Rust bits in mitmproxy";
|
|
homepage = "https://github.com/mitmproxy/mitmproxy_rs/tree/main/mitmproxy-macos";
|
|
changelog = "https://github.com/mitmproxy/mitmproxy_rs/blob/${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ boltzmannrain ];
|
|
platforms = platforms.darwin;
|
|
broken = true; # last successful build 2023-12-04
|
|
};
|
|
}
|