Merge pull request #303585 from fabaff/aioasuswrt-refactor

python312Packages.aioasuswrt: refactor
This commit is contained in:
Fabian Affolter 2024-04-12 15:40:20 +02:00 committed by GitHub
commit d5d45570cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,27 +1,38 @@
{ lib
, asyncssh
, buildPythonPackage
, fetchFromGitHub
, pytest-asyncio
, pytest-mock
, pytestCheckHook
{
lib,
asyncssh,
buildPythonPackage,
fetchFromGitHub,
pytest-asyncio,
pytest-mock,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "aioasuswrt";
version = "1.4.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "kennedyshead";
repo = pname;
rev = "V${version}";
sha256 = "1iv9f22v834g8wrjcynjn2azpzk8gsczv71jf7dw8aix0n04h325";
repo = "aioasuswrt";
rev = "refs/tags/V${version}";
hash = "sha256-RQxIgAU9KsTbcTKc/Zl+aP77lbDSeiYzR48MtIVwacc=";
};
propagatedBuildInputs = [
asyncssh
];
postPatch = ''
substituteInPlace setup.cfg \
--replace-fail "--cov-report html" "" \
--replace-fail "--cov-report term-missing" ""
'';
build-system = [ setuptools ];
dependencies = [ asyncssh ];
nativeCheckInputs = [
pytest-asyncio
@ -29,19 +40,12 @@ buildPythonPackage rec {
pytestCheckHook
];
postPatch = ''
substituteInPlace setup.cfg \
--replace "--cov-report html" "" \
--replace "--cov-report term-missing" ""
'';
pythonImportsCheck = [
"aioasuswrt"
];
pythonImportsCheck = [ "aioasuswrt" ];
meta = with lib; {
description = "Python module for Asuswrt";
homepage = "https://github.com/kennedyshead/aioasuswrt";
changelog = "https://github.com/kennedyshead/aioasuswrt/releases/tag/V${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};