blob: a6c5f4cba9b08be909763ae4ff9e04d01e57a942 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{
lib,
async-timeout,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pytest-cov-stub,
tenacity,
}:
buildPythonPackage rec {
pname = "aiokef";
version = "0.2.17";
format = "setuptools";
src = fetchFromGitHub {
owner = "basnijholt";
repo = "aiokef";
rev = "v${version}";
sha256 = "0ms0dwrpj80w55svcppbnp7vyl5ipnjfp1c436k5c7pph4q5pxk9";
};
postPatch = ''
substituteInPlace tox.ini \
--replace "--mypy" ""
'';
propagatedBuildInputs = [
async-timeout
tenacity
];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
];
enabledTestPaths = [ "tests" ];
pythonImportsCheck = [ "aiokef" ];
meta = {
description = "Python API for KEF speakers";
homepage = "https://github.com/basnijholt/aiokef";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fab ];
};
}
|