about summary refs log tree commit diff
path: root/pkgs/development/python-modules/matrix-nio
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-10-12 18:36:03 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-10-13 00:27:41 -0300
commit0c88bd8e4731f9d4105e7539609e9d65c114a221 (patch)
treecba173b415596a4276496b64d97412bf7c015106 /pkgs/development/python-modules/matrix-nio
parentf2dde7b3ebe6d0c0989f382acf9eb0f46af16e85 (diff)
pythonPackages.matrix-nio: 0.18.3 -> 0.18.7
Diffstat (limited to 'pkgs/development/python-modules/matrix-nio')
-rw-r--r--pkgs/development/python-modules/matrix-nio/default.nix54
1 files changed, 27 insertions, 27 deletions
diff --git a/pkgs/development/python-modules/matrix-nio/default.nix b/pkgs/development/python-modules/matrix-nio/default.nix
index d16260dd57eb6..96f333fcf8a6e 100644
--- a/pkgs/development/python-modules/matrix-nio/default.nix
+++ b/pkgs/development/python-modules/matrix-nio/default.nix
@@ -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
+, hypothesis
 , jsonschema
-, unpaddedbase64
-, pycryptodome
-, python-olm
 , peewee
-, cachetools
-, atomicwrites
-, pytestCheckHook
-, faker
-, aioresponses
-, hypothesis
+, 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 ];
   };