mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
It used to fail with
error: do not use python3Packages when building Python packages, specify each used package as a separate argument
14 lines
187 B
Nix
14 lines
187 B
Nix
{ newScope }:
|
|
|
|
let
|
|
callPackage = newScope self;
|
|
|
|
self = {
|
|
platformio-core = callPackage ./core.nix { };
|
|
|
|
platformio-chrootenv = callPackage ./chrootenv.nix { };
|
|
};
|
|
|
|
in
|
|
self
|