about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiokef/default.nix
blob: 52289adda84228e5e6a205ca943f3387314d5297 (plain) (blame)
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
{
  lib,
  async-timeout,
  buildPythonPackage,
  fetchFromGitHub,
  pytestCheckHook,
  pythonOlder,
  tenacity,
}:

buildPythonPackage rec {
  pname = "aiokef";
  version = "0.2.17";
  format = "setuptools";
  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "basnijholt";
    repo = pname;
    rev = "v${version}";
    sha256 = "0ms0dwrpj80w55svcppbnp7vyl5ipnjfp1c436k5c7pph4q5pxk9";
  };

  postPatch = ''
    substituteInPlace tox.ini \
      --replace "--cov --cov-append --cov-fail-under=30 --cov-report=" "" \
      --replace "--mypy" ""
  '';

  propagatedBuildInputs = [
    async-timeout
    tenacity
  ];

  nativeCheckInputs = [ pytestCheckHook ];

  pytestFlagsArray = [ "tests" ];
  pythonImportsCheck = [ "aiokef" ];

  meta = with lib; {
    description = "Python API for KEF speakers";
    homepage = "https://github.com/basnijholt/aiokef";
    license = with licenses; [ mit ];
    maintainers = with maintainers; [ fab ];
  };
}