
Diff: https://github.com/jaraco/jaraco.abode/compare/refs/tags/v6.2.1...v6.3.0 Changelog: https://github.com/jaraco/jaraco.abode/blob/v6.3.0/NEWS.rst
92 lines
1.6 KiB
Nix
92 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
bx-py-utils,
|
|
colorlog,
|
|
fetchFromGitHub,
|
|
importlib-resources,
|
|
jaraco-classes,
|
|
jaraco-collections,
|
|
jaraco-itertools,
|
|
jaraco-context,
|
|
jaraco-functools,
|
|
jaraco-net,
|
|
keyring,
|
|
lomond,
|
|
more-itertools,
|
|
platformdirs,
|
|
pytest-responses,
|
|
pytestCheckHook,
|
|
requests,
|
|
requests-toolbelt,
|
|
setuptools,
|
|
setuptools-scm,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jaraco-abode";
|
|
version = "6.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jaraco";
|
|
repo = "jaraco.abode";
|
|
tag = "v${version}";
|
|
hash = "sha256-AqnyQdLkg2vobVJ84X15AB0Yyj3gZf4rP3pEdk3MqZ4=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
dependencies = [
|
|
requests
|
|
lomond
|
|
colorlog
|
|
keyring
|
|
requests-toolbelt
|
|
jaraco-collections
|
|
jaraco-context
|
|
jaraco-classes
|
|
jaraco-net
|
|
more-itertools
|
|
importlib-resources
|
|
bx-py-utils
|
|
platformdirs
|
|
jaraco-itertools
|
|
jaraco-functools
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-responses
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "jaraco.abode" ];
|
|
|
|
preCheck = ''
|
|
export HOME=$TEMP
|
|
'';
|
|
|
|
disabledTests = [
|
|
"_cookie_string"
|
|
"test_cookies"
|
|
"test_empty_cookies"
|
|
"test_invalid_cookies"
|
|
# Issue with the regex
|
|
"test_camera_capture_no_control_URLs"
|
|
];
|
|
|
|
meta = {
|
|
changelog = "https://github.com/jaraco/jaraco.abode/blob/${src.tag}/NEWS.rst";
|
|
homepage = "https://github.com/jaraco/jaraco.abode";
|
|
description = "Library interfacing to the Abode home security system";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
jamiemagee
|
|
dotlambda
|
|
];
|
|
};
|
|
}
|