tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.matrix-nio: add missing dependency (cachetools)
pacien
6 years ago
d44c0b2d
509b20a2
+2
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
matrix-nio
default.nix
+2
-1
pkgs/development/python-modules/matrix-nio/default.nix
···
1
{ lib, buildPythonPackage, fetchFromGitHub, git,
2
attrs, future, peewee, h11, h2, atomicwrites, pycryptodome, sphinx, Logbook, jsonschema,
3
-
python-olm, unpaddedbase64, aiohttp }:
4
5
buildPythonPackage rec {
6
pname = "nio";
···
36
python-olm
37
unpaddedbase64
38
aiohttp
0
39
];
40
41
doCheck = false;
···
1
{ lib, buildPythonPackage, fetchFromGitHub, git,
2
attrs, future, peewee, h11, h2, atomicwrites, pycryptodome, sphinx, Logbook, jsonschema,
3
+
python-olm, unpaddedbase64, aiohttp, cachetools }:
4
5
buildPythonPackage rec {
6
pname = "nio";
···
36
python-olm
37
unpaddedbase64
38
aiohttp
39
+
cachetools
40
];
41
42
doCheck = false;