depot/third_party/nixpkgs/pkgs/development/python-modules/evohome-async/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

46 lines
910 B
Nix

{
lib,
aiohttp,
buildPythonPackage,
click,
fetchFromGitHub,
hatchling,
pythonOlder,
voluptuous,
}:
buildPythonPackage rec {
pname = "evohome-async";
version = "0.4.19";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "zxdavb";
repo = "evohome-async";
rev = "refs/tags/${version}";
hash = "sha256-B7LvGXAZO1pd9iCuZjW/bRWdB5PEzfcQjZWokGzMN70=";
};
nativeBuildInputs = [ hatchling ];
propagatedBuildInputs = [
aiohttp
click
voluptuous
];
# Project has no tests
doCheck = false;
pythonImportsCheck = [ "evohomeasync2" ];
meta = with lib; {
description = "Python client for connecting to Honeywell's TCC RESTful API";
homepage = "https://github.com/zxdavb/evohome-async";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
mainProgram = "evo-client";
};
}