blob: 793ec8276720151bb4076122edca5ce19c02994c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
with import <nixpkgs> {};
python3.pkgs.buildPythonApplication {
pname = "zulip-twitter-bot";
version = "latest";
src = ./.;
propagatedBuildInputs = with python3.pkgs; [
python-twitter zulip
];
}
|