Files
NxCalDav/shell.nix
Lennart J. Kurzweg (Nx2) 579ba8f5ef cleanups
2026-04-22 17:30:07 +02:00

13 lines
255 B
Nix

{ pkgs ? import <nixpkgs> { } }: let
my-python = pkgs.python312;
python-with-my-packages = my-python.withPackages (p: with p; [
ical
ics
caldav
pyyaml
psycopg2
]);
in pkgs.mkShell {
buildInputs = [ python-with-my-packages ];
}