mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
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:
committed by
Sandro Jäckel
parent
e594b21947
commit
915ca47f28
@@ -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;
|
||||
|
||||
@@ -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 ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user