16 lines
337 B
Nix
16 lines
337 B
Nix
{ pkgs ? import <nixpkgs> {}, unstable ? import <nixpkgs-unstable> {} }:
|
|
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
pkgs.python312
|
|
unstable.uv
|
|
unstable.python312Packages.ipykernel
|
|
unstable.python312Packages.rich
|
|
# unstable.appdaemon
|
|
];
|
|
|
|
shellHook = ''
|
|
echo "Welcome to the Nix shell for AppDaemon development"
|
|
'';
|
|
}
|