summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pkgs/telethon_sync/default.nix7
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 }:
2with python3Packages; 2with python3Packages;
3buildPythonPackage rec { 3buildPythonPackage 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 = [