23b612e36f
GitOrigin-RevId: ae5c332cbb5827f6b1f02572496b141021de335f
75 lines
1.5 KiB
Nix
75 lines
1.5 KiB
Nix
{ lib
|
|
, aiohttp
|
|
, aresponses
|
|
, backoff
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, packaging
|
|
, poetry-core
|
|
, pydantic
|
|
, pytest-asyncio
|
|
, pytest-mock
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, yarl
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-bsblan";
|
|
version = "0.5.18";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "liudger";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-SJUIJhsVn4LZiUx9h3Q2uWoeaQiKoIRrijTfPgCHnAA=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'version = "0.0.0"' 'version = "${version}"' \
|
|
--replace "--cov" ""
|
|
sed -i "/covdefaults/d" pyproject.toml
|
|
sed -i "/ruff/d" pyproject.toml
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
aiohttp
|
|
backoff
|
|
packaging
|
|
pydantic
|
|
yarl
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
aresponses
|
|
pytest-asyncio
|
|
pytest-mock
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTests = lib.optionals (lib.versionAtLeast aiohttp.version "3.9.0") [
|
|
# https://github.com/liudger/python-bsblan/issues/808
|
|
"test_http_error400"
|
|
"test_not_authorized_401_response"
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"bsblan"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module to control and monitor an BSBLan device programmatically";
|
|
homepage = "https://github.com/liudger/python-bsblan";
|
|
changelog = "https://github.com/liudger/python-bsblan/releases/tag/v${version}";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|