Unverified Commit f99d2aea authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python312Packages.aiosyncthing: refactor (#371396)

parents 86f322b6 f3fe1478
Loading
Loading
Loading
Loading
+11 −10
Original line number Diff line number Diff line
@@ -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 ];
  };
}