Unverified Commit d1fb88de authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #199027 from arcnmx/platformio-fix

parents 66a4caf8 6a01d889
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -3,11 +3,8 @@
let
  pio-pkgs = pkgs:
    let
      python = pkgs.python3.override {
        packageOverrides = self: super: {
          platformio = self.callPackage ./core.nix { inherit version src; };
        };
      };
      python = pkgs.python3;
      platformio = python.pkgs.callPackage ./core.nix { inherit version src; };
    in
    (with pkgs; [
      zlib
+1 −1
Original line number Diff line number Diff line
@@ -22,6 +22,7 @@ with python3.pkgs; buildPythonApplication rec {

    substituteInPlace setup.py \
      --replace 'uvicorn==%s" % ("0.17.*"' 'uvicorn==%s" % ("0.18.*"' \
      --replace 'aiofiles==0.8.*' 'aiofiles==22.1.*' \
      --replace 'wsproto==' 'wsproto>='
  '';

@@ -147,6 +148,5 @@ with python3.pkgs; buildPythonApplication rec {
    homepage = "https://platformio.org";
    license = licenses.asl20;
    maintainers = with maintainers; [ mog makefu ];
    broken = stdenv.isAarch64;
  };
}