python3Packages.mautrix: 0.19.16 -> 0.20.0

Diff: https://github.com/mautrix/python/compare/refs/tags/v0.19.16...v0.20.0

Changelog: https://github.com/mautrix/python/releases/tag/v0.20.0
This commit is contained in:
Nick Cao 2023-06-26 21:12:11 +08:00
parent a8eaa43a38
commit 07dcfda49e
No known key found for this signature in database

View file

@ -15,22 +15,21 @@
, pytestCheckHook
, pytest-asyncio
, aiosqlite
, sqlalchemy
, asyncpg
}:
buildPythonPackage rec {
pname = "mautrix";
version = "0.19.16";
version = "0.20.0";
format = "setuptools";
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "mautrix";
repo = "python";
rev = "refs/tags/v${version}";
hash = "sha256-aZlc4+J5Q+N9qEzGUMhsYguPdUy+E5I06wrjVyqvVDk=";
hash = "sha256-op28CGpJBcCBiy0WXboaf4JeNRIMX6653QkAV6XW/yI=";
};
propagatedBuildInputs = [
@ -57,17 +56,9 @@ buildPythonPackage rec {
checkInputs = [
pytest-asyncio
aiosqlite
sqlalchemy
asyncpg
] ++ passthru.optional-dependencies.encryption;
SQLALCHEMY_SILENCE_UBER_WARNING = 1;
disabledTestPaths = [
# sqlalchemy 2 unsupported
"mautrix/client/state_store/tests/store_test.py"
];
pythonImportsCheck = [
"mautrix"
];