587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
74 lines
1.4 KiB
Nix
74 lines
1.4 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, freezegun
|
|
, mashumaro
|
|
, poetry-core
|
|
, pyjwt
|
|
, pytest-asyncio
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, setuptools
|
|
, syrupy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aioautomower";
|
|
version = "2024.4.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.11";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Thomas55555";
|
|
repo = "aioautomower";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-W6aZdvg+EZKv0pmIaPOBaJaWipq3AENTVAVon/lFuI4=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Upstream doesn't set a version
|
|
substituteInPlace pyproject.toml \
|
|
--replace-fail 'version = "0.0.0"' 'version = "${version}"'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
mashumaro
|
|
pyjwt
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
freezegun
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
syrupy
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"aioautomower"
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
"--snapshot-update"
|
|
];
|
|
|
|
disabledTests = [
|
|
# File is missing
|
|
"test_standard_mower"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module to communicate with the Automower Connect API";
|
|
homepage = "https://github.com/Thomas55555/aioautomower";
|
|
changelog = "https://github.com/Thomas55555/aioautomower/releases/tag/${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|