aboutsummaryrefslogtreecommitdiff
path: root/pkgs/telethon_sync
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2019-04-26 12:12:12 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2019-04-26 12:12:12 +0200
commit98de2045a749b25d031b174c940096b4f5406b9d (patch)
tree3da1a45ec067551d233bb800eee912d44c5e7fdd /pkgs/telethon_sync
parenta2230e848bc85e484ef14163ac90fdb7045855f7 (diff)
downloadNix-98de2045a749b25d031b174c940096b4f5406b9d.tar.gz
Nix-98de2045a749b25d031b174c940096b4f5406b9d.tar.zst
Nix-98de2045a749b25d031b174c940096b4f5406b9d.zip
Move more packages to split files
Diffstat (limited to 'pkgs/telethon_sync')
-rw-r--r--pkgs/telethon_sync/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/telethon_sync/default.nix b/pkgs/telethon_sync/default.nix
new file mode 100644
index 0000000..aa58d5b
--- /dev/null
+++ b/pkgs/telethon_sync/default.nix
@@ -0,0 +1,23 @@
1{ lib, python3Packages }:
2with python3Packages;
3buildPythonPackage rec {
4 pname = "Telethon-sync";
5 version = "1.1.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 =
10 "01z8fzqn0qs5pxhvzq891r3mwffq1ga3f8xvm7qdn6kvmxjni9fy";
11 };
12
13 propagatedBuildInputs = [
14 rsa pyaes async_generator
15 ];
16 doCheck = false;
17
18 meta = with lib; {
19 homepage = https://github.com/LonamiWebs/Telethon;
20 description = "Full-featured Telegram client library for Python 3";
21 license = licenses.mit;
22 };
23}