diff options
author | Ben Sima <ben@bsima.me> | 2022-07-05 11:39:55 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2022-07-05 11:39:55 -0400 |
commit | 02a806624b8a66114192ac75ae4114a3c088b170 (patch) | |
tree | 7421c43b57000b6bf316f4a57c8885a601fd3335 /default.nix | |
parent | 8b324c4becd6e42352de30d74dc931f50263bb4c (diff) |
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..793ec82 --- /dev/null +++ b/default.nix @@ -0,0 +1,13 @@ +with import <nixpkgs> {}; + +python3.pkgs.buildPythonApplication { + pname = "zulip-twitter-bot"; + version = "latest"; + + src = ./.; + + propagatedBuildInputs = with python3.pkgs; [ + python-twitter zulip + ]; + +} |