1{ lib, buildPythonPackage, fetchPypi, aiohttp, future-fstrings, pythonOlder }:
2
3buildPythonPackage rec {
4 pname = "mautrix-appservice";
5 version = "0.3.11";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "60192920cff75afdd096eea3a43276e33ec15f4f00bd04d2d1dda616c84f22a5";
10 };
11
12 propagatedBuildInputs = [
13 aiohttp
14 future-fstrings
15 ];
16
17 # No tests available
18 doCheck = false;
19
20 disabled = pythonOlder "3.5";
21
22 meta = with lib; {
23 homepage = https://github.com/tulir/mautrix-appservice-python;
24 description = "A Python 3 asyncio-based Matrix application service framework";
25 license = licenses.mit;
26 maintainers = with maintainers; [ nyanloutre ];
27 };
28}