python312Packages.aiosyncthing: refactor (#371396)

This commit is contained in:
Nick Cao
2025-01-06 10:29:58 -05:00
committed by GitHub
@@ -6,24 +6,28 @@
fetchFromGitHub,
expects,
pytest-asyncio,
pytest-cov-stub,
pytest-mock,
pytestCheckHook,
setuptools,
yarl,
}:
buildPythonPackage rec {
pname = "aiosyncthing";
version = "0.6.3";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "zhulik";
repo = pname;
rev = "v${version}";
repo = "aiosyncthing";
tag = "v${version}";
hash = "sha256-vn8S2/kRW5C2Hbes9oLM4LGm1jWWK0zeLdujR14y6EI=";
};
propagatedBuildInputs = [
build-system = [ setuptools ];
dependencies = [
aiohttp
yarl
];
@@ -32,23 +36,20 @@ buildPythonPackage rec {
aioresponses
expects
pytestCheckHook
pytest-cov-stub
pytest-asyncio
pytest-mock
];
pytestFlagsArray = [ "--asyncio-mode=auto" ];
postPatch = ''
substituteInPlace pyproject.toml \
--replace " --cov=aiosyncthing --cov-report=html" ""
'';
pythonImportsCheck = [ "aiosyncthing" ];
meta = with lib; {
description = "Python client for the Syncthing REST API";
homepage = "https://github.com/zhulik/aiosyncthing";
license = with licenses; [ mit ];
changelog = "https://github.com/zhulik/aiosyncthing/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}