]> git.immae.eu Git - perso/Immae/Config/Nix.git/blobdiff - pkgs/telethon_sync/default.nix
Bump homer
[perso/Immae/Config/Nix.git] / pkgs / telethon_sync / default.nix
diff --git a/pkgs/telethon_sync/default.nix b/pkgs/telethon_sync/default.nix
deleted file mode 100644 (file)
index aa58d5b..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-{ lib, python3Packages }:
-with python3Packages;
-buildPythonPackage rec {
-  pname = "Telethon-sync";
-  version = "1.1.1";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 =
-      "01z8fzqn0qs5pxhvzq891r3mwffq1ga3f8xvm7qdn6kvmxjni9fy";
-  };
-
-  propagatedBuildInputs = [
-    rsa pyaes async_generator
-  ];
-  doCheck = false;
-
-  meta = with lib; {
-    homepage = https://github.com/LonamiWebs/Telethon;
-    description = "Full-featured Telegram client library for Python 3";
-    license = licenses.mit;
-  };
-}