Commit fd715561 authored by Robert Schütz's avatar Robert Schütz
Browse files

platformio: fix eval

It used to fail with

    error: do not use python3Packages when building Python packages, specify each used package as a separate argument
parent f90d0a33
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ newScope, python3Packages }:
{ newScope }:

let
  callPackage = newScope self;

  self = {
    platformio-core = python3Packages.callPackage ./core.nix { };
    platformio-core = callPackage ./core.nix { };

    platformio-chrootenv = callPackage ./chrootenv.nix { };
  };