Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.matrix-nio: add missing dependency (cachetools)

pacien d44c0b2d 509b20a2

+2 -1
+2 -1
pkgs/development/python-modules/matrix-nio/default.nix
··· 1 1 { lib, buildPythonPackage, fetchFromGitHub, git, 2 2 attrs, future, peewee, h11, h2, atomicwrites, pycryptodome, sphinx, Logbook, jsonschema, 3 - python-olm, unpaddedbase64, aiohttp }: 3 + python-olm, unpaddedbase64, aiohttp, cachetools }: 4 4 5 5 buildPythonPackage rec { 6 6 pname = "nio"; ··· 36 36 python-olm 37 37 unpaddedbase64 38 38 aiohttp 39 + cachetools 39 40 ]; 40 41 41 42 doCheck = false;