c7cb07f092
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
82 lines
1.5 KiB
Nix
82 lines
1.5 KiB
Nix
{ lib
|
|
, aiohttp-retry
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, freezegun
|
|
, ical
|
|
, parameterized
|
|
, pycryptodome
|
|
, pydantic
|
|
, pytest-aiohttp
|
|
, pytest-asyncio
|
|
, pytest-golden
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, python-dateutil
|
|
, pythonOlder
|
|
, pyyaml
|
|
, requests
|
|
, requests-mock
|
|
, responses
|
|
, setuptools
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyrainbird";
|
|
version = "4.0.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "allenporter";
|
|
repo = "pyrainbird";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-4AoxLZv0u8wCG3ihw0JqsqsO5zG5UyP4ebSX99ve8sg=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pytest.ini \
|
|
--replace-fail "--cov=pyrainbird --cov-report=term-missing" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp-retry
|
|
ical
|
|
pycryptodome
|
|
pydantic
|
|
python-dateutil
|
|
pyyaml
|
|
requests
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
nativeCheckInputs = [
|
|
freezegun
|
|
parameterized
|
|
pytest-aiohttp
|
|
pytest-asyncio
|
|
pytest-golden
|
|
pytest-mock
|
|
pytestCheckHook
|
|
requests-mock
|
|
responses
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"pyrainbird"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module to interact with Rainbird controllers";
|
|
homepage = "https://github.com/allenporter/pyrainbird";
|
|
changelog = "https://github.com/allenporter/pyrainbird/releases/tag/${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|