2019-12-28 12:09:02 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, aiohttp, future-fstrings, pythonOlder
|
|
|
|
, sqlalchemy, ruamel_yaml, CommonMark, lxml, fetchpatch
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "mautrix";
|
2020-06-21 19:45:18 +01:00
|
|
|
version = "0.5.7";
|
2019-12-28 12:09:02 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-21 19:45:18 +01:00
|
|
|
sha256 = "0czymj9k9faky4dyrbxpr8rfrsb28xz9c0p66dcxvchk3m3ac49k";
|
2019-12-28 12:09:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
aiohttp
|
|
|
|
future-fstrings
|
|
|
|
|
|
|
|
# defined in optional-requirements.txt
|
|
|
|
sqlalchemy
|
|
|
|
ruamel_yaml
|
|
|
|
CommonMark
|
|
|
|
lxml
|
|
|
|
];
|
|
|
|
|
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
|
|
|
|
# no tests available
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/tulir/mautrix-python";
|
2019-12-28 12:09:02 +00:00
|
|
|
description = "A Python 3 asyncio Matrix framework.";
|
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = with maintainers; [ nyanloutre ma27 ];
|
|
|
|
};
|
|
|
|
}
|