pythonPackages.matrix-nio: 0.18.3 -> 0.18.7

This commit is contained in:
AndersonTorres 2021-10-12 18:36:03 -03:00
parent f2dde7b3eb
commit 0c88bd8e47

View File

@ -1,41 +1,41 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, git
, poetry-core
, attrs
, future
, Logbook
, aiofiles
, aiohttp
, aiohttp-socks
, aiofiles
, aioresponses
, atomicwrites
, attrs
, cachetools
, faker
, future
, git
, h11
, h2
, Logbook
, jsonschema
, unpaddedbase64
, pycryptodome
, python-olm
, peewee
, cachetools
, atomicwrites
, pytestCheckHook
, faker
, aioresponses
, hypothesis
, jsonschema
, peewee
, poetry-core
, pycryptodome
, pytest-aiohttp
, pytest-benchmark
, pytestCheckHook
, python-olm
, unpaddedbase64
}:
buildPythonPackage rec {
pname = "matrix-nio";
version = "0.18.3";
version = "0.18.7";
format = "pyproject";
src = fetchFromGitHub {
owner = "poljar";
repo = "matrix-nio";
rev = version;
sha256 = "1sjdqzlk8vgv0748ayhnadw1bip3i4bfga4knb94cfkd3s4rgb39";
hash = "sha256-eti9kvfv3y7m+mJzcxftyn8OyVSd2Ehqd3eU2ezMV5Q=";
};
postPatch = ''
@ -50,26 +50,26 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
attrs
future
Logbook
aiofiles
aiohttp
aiohttp-socks
aiofiles
atomicwrites
attrs
cachetools
future
h11
h2
Logbook
jsonschema
unpaddedbase64
peewee
pycryptodome
python-olm
peewee
cachetools
atomicwrites
unpaddedbase64
];
checkInputs = [
faker
aioresponses
faker
hypothesis
pytest-aiohttp
pytest-benchmark
@ -83,8 +83,8 @@ buildPythonPackage rec {
];
meta = with lib; {
description = "A Python Matrix client library, designed according to sans I/O principles";
homepage = "https://github.com/poljar/matrix-nio";
description = "A Python Matrix client library, designed according to sans I/O principles";
license = licenses.isc;
maintainers = with maintainers; [ tilpner emily symphorien ];
};