Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pytedee-async / default.nix
blobcdb89a843c139002a8227ffe3576dc55b938f61c
1 { lib
2 , aiohttp
3 , buildPythonPackage
4 , fetchFromGitHub
5 , pythonOlder
6 , setuptools
7 }:
9 buildPythonPackage rec {
10   pname = "pytedee-async";
11   version = "0.2.17";
12   pyproject = true;
14   disabled = pythonOlder "3.9";
16   src = fetchFromGitHub {
17     owner = "zweckj";
18     repo = "pytedee_async";
19     rev = "refs/tags/v${version}";
20     hash = "sha256-5mCHCzoDJ6+ao2guhAtVjvPaAS6Hutn+NwaQIjWDlgo=";
21   };
23   build-system = [
24     setuptools
25   ];
27   dependencies = [
28     aiohttp
29   ];
31   pythonImportsCheck = [
32     "pytedee_async"
33   ];
35   # Module has no tests
36   doCheck = false;
38   meta = with lib; {
39     description = "Module to interact with Tedee locks";
40     homepage = "https://github.com/zweckj/pytedee_async";
41     changelog = "https://github.com/zweckj/pytedee_async/releases/tag/v${version}";
42     license = licenses.mit;
43     maintainers = with maintainers; [ fab ];
44   };