Files
nixpkgs/pkgs/development/python-modules/pytedee-async/default.nix
2025-05-31 09:08:10 +00:00

41 lines
843 B
Nix

{
lib,
aiohttp,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "pytedee-async";
version = "0.2.23";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "zweckj";
repo = "pytedee_async";
tag = "v${version}";
hash = "sha256-aRxZcYm+xXt0QiUVeAe7OocY3Tew/UPiKzMCvSTaUuw=";
};
build-system = [ setuptools ];
dependencies = [ aiohttp ];
pythonImportsCheck = [ "aiotedee" ];
# Module has no tests
doCheck = false;
meta = with lib; {
description = "Module to interact with Tedee locks";
homepage = "https://github.com/zweckj/pytedee_async";
changelog = "https://github.com/zweckj/pytedee_async/releases/tag/${src.tag}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}