anki-bin: 24.06.3 -> 24.11 (#360722)
[NixPkgs.git] / pkgs / development / python-modules / pytedee-async / default.nix
blobccf6fd94f7db6f3489f759577b0d4cbfc8a51a56
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchFromGitHub,
6   pythonOlder,
7   setuptools,
8 }:
10 buildPythonPackage rec {
11   pname = "pytedee-async";
12   version = "0.2.20";
13   pyproject = true;
15   disabled = pythonOlder "3.9";
17   src = fetchFromGitHub {
18     owner = "zweckj";
19     repo = "pytedee_async";
20     rev = "refs/tags/v${version}";
21     hash = "sha256-mBE5h6oGEJ2Wzb/PCD4vwFs52tWy+YmQVA06BPVW1Kg=";
22   };
24   build-system = [ setuptools ];
26   dependencies = [ aiohttp ];
28   pythonImportsCheck = [ "pytedee_async" ];
30   # Module has no tests
31   doCheck = false;
33   meta = with lib; {
34     description = "Module to interact with Tedee locks";
35     homepage = "https://github.com/zweckj/pytedee_async";
36     changelog = "https://github.com/zweckj/pytedee_async/releases/tag/v${version}";
37     license = licenses.mit;
38     maintainers = with maintainers; [ fab ];
39   };