diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-04-25 00:03:52 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2020-04-25 00:05:00 +0200 |
commit | 9951b235a76800a572ea30793126b7dd8cdf3f0d (patch) | |
tree | 01c7bac0153c52d2b2055786173dda4936749a43 /pkgs | |
parent | 63fbfda29a0f1f1185f845ddea70fc81ae4a348c (diff) | |
download | NUR-master.tar.gz NUR-master.tar.zst NUR-master.zip |
Diffstat (limited to 'pkgs')
-rw-r--r-- | pkgs/telethon_sync/default.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/telethon_sync/default.nix b/pkgs/telethon_sync/default.nix index 5cbff95c..a03e1c39 100644 --- a/pkgs/telethon_sync/default.nix +++ b/pkgs/telethon_sync/default.nix | |||
@@ -1,13 +1,14 @@ | |||
1 | { lib, python3Packages }: | 1 | { lib, python3Packages, fetchgit }: |
2 | with python3Packages; | 2 | with python3Packages; |
3 | buildPythonPackage rec { | 3 | buildPythonPackage rec { |
4 | pname = "Telethon-sync"; | 4 | pname = "Telethon-sync"; |
5 | version = "1.1.1"; | 5 | version = "1.1.1"; |
6 | 6 | ||
7 | src = builtins.fetchGit { | 7 | src = fetchgit { |
8 | url = "https://github.com/LonamiWebs/Telethon"; | 8 | url = "https://github.com/LonamiWebs/Telethon"; |
9 | ref = "sync-stale"; | 9 | branchName = "sync-stale"; |
10 | rev = "6a785a01aa56cfd21c8c5beb9d722c68d664ba5e"; | 10 | rev = "6a785a01aa56cfd21c8c5beb9d722c68d664ba5e"; |
11 | sha256 = "0g7gnln5kbh1gy6sfb3jg6knmi33n6sgzy2rni2x6af84lza0lgc"; | ||
11 | }; | 12 | }; |
12 | 13 | ||
13 | propagatedBuildInputs = [ | 14 | propagatedBuildInputs = [ |