14 buildPythonPackage rec {
15 pname = "aiosyncthing";
17 format = "setuptools";
19 src = fetchFromGitHub {
23 hash = "sha256-vn8S2/kRW5C2Hbes9oLM4LGm1jWWK0zeLdujR14y6EI=";
26 propagatedBuildInputs = [
39 pytestFlagsArray = [ "--asyncio-mode=auto" ];
42 substituteInPlace pyproject.toml \
43 --replace " --cov=aiosyncthing --cov-report=html" ""
46 pythonImportsCheck = [ "aiosyncthing" ];
49 description = "Python client for the Syncthing REST API";
50 homepage = "https://github.com/zhulik/aiosyncthing";
51 license = with licenses; [ mit ];
52 maintainers = with maintainers; [ fab ];