python3Packages.mitmproxy-macos: reuse meta attribute from mitmproxy-rs

Similar to mitmproxy-linux subpackage let's reuse changelog,license,maintainers.

Effective change is removing myself from mitmproxy-macos maintainers,
I haven't been involved or contributing a lot since a while ago.
At the same time there is activity supported by current mitmproxy-rs
maintainers and just documenting it sounds fair.
This commit is contained in:
Dmitry Ivankov
2025-09-09 20:28:54 +02:00
committed by Sandro Jäckel
parent e594b21947
commit 915ca47f28
2 changed files with 4 additions and 8 deletions

View File

@@ -44,8 +44,6 @@ buildPythonPackage {
meta = {
inherit (mitmproxy-rs.meta) changelog license maintainers;
}
// {
description = "Linux Rust bits in mitmproxy";
homepage = "https://github.com/mitmproxy/mitmproxy_rs/tree/main/mitmproxy-linux";
platforms = lib.platforms.linux;

View File

@@ -24,13 +24,11 @@ buildPythonPackage rec {
pythonImportsCheck = [ "mitmproxy_macos" ];
meta = with lib; {
meta = {
inherit (mitmproxy-rs.meta) changelog license maintainers;
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;
sourceProvenance = with sourceTypes; [ binaryBytecode ];
platforms = lib.platforms.darwin;
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
};
}