mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
8 lines
219 B
Nix
8 lines
219 B
Nix
{ lib, python3Packages }:
|
|
|
|
python3Packages.toPythonApplication (
|
|
python3Packages.meshtastic.overridePythonAttrs (prev: {
|
|
dependencies = prev.dependencies ++ lib.concatAttrValues prev.optional-dependencies;
|
|
})
|
|
)
|