3e7541c14f
GitOrigin-RevId: ff377a78794d412a35245e05428c8f95fef3951f
38 lines
838 B
Nix
38 lines
838 B
Nix
{ lib, buildPythonPackage, fetchPypi, aiohttp, pythonOlder
|
|
, sqlalchemy, ruamel-yaml, CommonMark, lxml, aiosqlite
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mautrix";
|
|
version = "0.14.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "a7b41b522deafe47f8d3ce2b13f5a8a01f7bc715f09ebb5ca53a4af4f6987701";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
|
|
# defined in optional-requirements.txt
|
|
sqlalchemy
|
|
aiosqlite
|
|
ruamel-yaml
|
|
CommonMark
|
|
lxml
|
|
];
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
# no tests available
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "mautrix" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/tulir/mautrix-python";
|
|
description = "A Python 3 asyncio Matrix framework.";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ nyanloutre ma27 sumnerevans ];
|
|
};
|
|
}
|