summary refs log tree commit diff
path: root/pkgs/development/python-modules/telethon-session-sqlalchemy/default.nix
blob: c6d3a21b10ba1efc416691b623733dd0517a6cc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, buildPythonPackage, fetchPypi, sqlalchemy, telethon }:

buildPythonPackage rec {
  pname = "telethon-session-sqlalchemy";
  version = "0.2.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "b392096b14e5cdc4040d3900cc2be7847b160ed77e5c861a6bd07d75d8e17a85";
  };

  propagatedBuildInputs = [
    sqlalchemy
  ];

  # No tests available
  doCheck = false;

  meta = with lib; {
    homepage = https://github.com/tulir/telethon-session-sqlalchemy;
    description = "SQLAlchemy backend for Telethon session storage";
    license = licenses.mit;
    maintainers = with maintainers; [ nyanloutre ];
  };
}