Unverified Commit 9a0b8556 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

python312Packages.sonarr: drop (#373330)

parent 3a9daffa
Loading
Loading
Loading
Loading
+0 −43
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  aiohttp,
  yarl,
  aresponses,
  pytest-asyncio,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "sonarr";
  version = "0.3.0";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "ctalkington";
    repo = "python-sonarr";
    rev = version;
    sha256 = "0gi34951qhzzrq59hj93mnkid8cvvknlamkhir6ya9mb23fr7bya";
  };

  propagatedBuildInputs = [
    aiohttp
    yarl
  ];

  nativeCheckInputs = [
    aresponses
    pytest-asyncio
    pytestCheckHook
  ];

  pythonImportsCheck = [ "sonarr" ];

  meta = with lib; {
    description = "Asynchronous Python client for the Sonarr API";
    homepage = "https://github.com/ctalkington/python-sonarr";
    license = licenses.mit;
    maintainers = with maintainers; [ dotlambda ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -657,6 +657,7 @@ mapAliases ({
  smmap2 = throw "smmap2 has been deprecated, use smmap instead."; # added 2020-03-14
  smpp_pdu = smpp-pdu; # added 2024-03-05
  somecomfort = throw "somecomfort was removed because Home Assistant switched to aiosomecomfort"; # added 2023-02-01
  sonarr = throw "sonarr has been deprecated and removed"; # added 2025-01-13
  solaredge = throw "solaredge was removed because Home Assistant switched to aiosolaredge"; # added 2024-07-15
  sorl_thumbnail = sorl-thumbnail; # added 2023-11-12
  spacy_models = spacy-models; # added 2024-04-21
+0 −2
Original line number Diff line number Diff line
@@ -15258,8 +15258,6 @@ self: super: with self; {
  somweb = callPackage ../development/python-modules/somweb { };
  sonarr = callPackage ../development/python-modules/sonarr { };
  sonos-websocket = callPackage ../development/python-modules/sonos-websocket { };
  sopel = callPackage ../development/python-modules/sopel { };