conference-manager/shell.nix

4 lines
145 B
Nix
Raw Permalink Normal View History

2024-07-30 18:46:55 -05:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.python311Packages; [ django ] ++ [ pkgs.docker-compose ] ;
}