pythonPackages.telethon-session-sqlalchemy: init at 0.2.5
This commit is contained in:
parent
351256a9df
commit
9cc5a48329
@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
@ -4417,6 +4417,8 @@ in {
|
||||
|
||||
telethon = callPackage ../development/python-modules/telethon { };
|
||||
|
||||
telethon-session-sqlalchemy = callPackage ../development/python-modules/telethon-session-sqlalchemy { };
|
||||
|
||||
terminaltables = callPackage ../development/python-modules/terminaltables { };
|
||||
|
||||
testpath = callPackage ../development/python-modules/testpath { };
|
||||
|
Loading…
Reference in New Issue
Block a user