Nix package for PowerShell

Hello!

I’ve configured the following replit:

https://replit.com/@dharmatech/PleasantForkedLogins

to have the pkgs.powershell nix package:

{ pkgs }: {
    deps = [
        pkgs.powershell
    ];
}

However, when I run it, it just seems to hang, instead of producing a prompt:

Any suggestions for getting the nix PowerShell package working in replit?

Thanks!

Ed