nixpkgs/pkgs/development/python-modules/mautrix/default.nix
Maximilian Bosch 0a2fe61c81
Revert "python: mautrix: 0.5.8 -> 0.6.1"
This breaks `mautrix-telegram` which doesn't support v0.6 on its latest
stable release.

This reverts commit ad83814375.
2020-08-28 23:41:58 +02:00

37 lines
798 B
Nix

{ lib, buildPythonPackage, fetchPypi, aiohttp, future-fstrings, pythonOlder
, sqlalchemy, ruamel_yaml, CommonMark, lxml, fetchpatch
}:
buildPythonPackage rec {
pname = "mautrix";
version = "0.5.8";
src = fetchPypi {
inherit pname version;
sha256 = "1hqg32n7pmjhap0ybfcf05zgfcyyirb4fm1m7gf44dwh40da6qz0";
};
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; {
homepage = "https://github.com/tulir/mautrix-python";
description = "A Python 3 asyncio Matrix framework.";
license = licenses.mpl20;
maintainers = with maintainers; [ nyanloutre ma27 ];
};
}