diff options
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -16,7 +16,9 @@ devShells = eachNixpkgs (pkgs: { default = pkgs.mkShell { inputsFrom = [ - # self.packages.${pkgs.system}.default + # self.packages.${pkgs.system}.app + # self.packages.${pkgs.system}.watermark-worker + # self.packages.${pkgs.system}.notification-worker ]; buildInputs = with pkgs; [ # Services needed for a full deployment. @@ -27,6 +29,14 @@ # Development utilities. minio-client modd + + # Python interpreter + (python3.withPackages (ps: with ps; [ + pillow + psycopg + boto3 + beanstalkc + ])) ]; }; }); |