Closes: https://github.com/damus-io/damus/issues/3007 Changelog-Added: Added new onboarding suggestions based on user-selected interests Signed-off-by: Daniel D’Aquino <daniel@daquino.me>
6 lines
137 B
Nix
6 lines
137 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
with pkgs;
|
|
mkShell {
|
|
buildInputs = with python3Packages; [ Mako requests wabt todo-txt-cli pyyaml ];
|
|
}
|