Unverified Commit 915ca47f authored by Dmitry Ivankov's avatar Dmitry Ivankov Committed by Sandro Jäckel
Browse files

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.
parent e594b219
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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;
+4 −6
Original line number Diff line number Diff line
@@ -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 ];
  };
}