diff options
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 + ]; + +} |