diff options
Diffstat (limited to 'pkgs/telethon_sync')
-rw-r--r-- | pkgs/telethon_sync/default.nix | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/telethon_sync/default.nix b/pkgs/telethon_sync/default.nix deleted file mode 100644 index a03e1c3..0000000 --- a/pkgs/telethon_sync/default.nix +++ /dev/null | |||
@@ -1,24 +0,0 @@ | |||
1 | { lib, python3Packages, fetchgit }: | ||
2 | with python3Packages; | ||
3 | buildPythonPackage rec { | ||
4 | pname = "Telethon-sync"; | ||
5 | version = "1.1.1"; | ||
6 | |||
7 | src = fetchgit { | ||
8 | url = "https://github.com/LonamiWebs/Telethon"; | ||
9 | branchName = "sync-stale"; | ||
10 | rev = "6a785a01aa56cfd21c8c5beb9d722c68d664ba5e"; | ||
11 | sha256 = "0g7gnln5kbh1gy6sfb3jg6knmi33n6sgzy2rni2x6af84lza0lgc"; | ||
12 | }; | ||
13 | |||
14 | propagatedBuildInputs = [ | ||
15 | rsa pyaes async_generator | ||
16 | ]; | ||
17 | doCheck = false; | ||
18 | |||
19 | meta = with lib; { | ||
20 | homepage = https://github.com/LonamiWebs/Telethon; | ||
21 | description = "Full-featured Telegram client library for Python 3"; | ||
22 | license = licenses.mit; | ||
23 | }; | ||
24 | } | ||