From 6802686d6920023b6c15c39575ae4293175d7508 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 7 Jul 2022 14:50:21 +0200 Subject: [PATCH] python3Packages.pyialarmxr-homeassistant: drop Was part of the ialarm_xr component of home-assistant, which was removed in the 2022.7.0 release. --- .../pyialarmxr-homeassistant/default.nix | 39 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 - 3 files changed, 1 insertion(+), 41 deletions(-) delete mode 100644 pkgs/development/python-modules/pyialarmxr-homeassistant/default.nix diff --git a/pkgs/development/python-modules/pyialarmxr-homeassistant/default.nix b/pkgs/development/python-modules/pyialarmxr-homeassistant/default.nix deleted file mode 100644 index fea638f7a5f8..000000000000 --- a/pkgs/development/python-modules/pyialarmxr-homeassistant/default.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ lib -, buildPythonPackage -, fetchPypi -, lxml -, pythonOlder -, xmltodict -}: - -buildPythonPackage rec { - pname = "pyialarmxr-homeassistant"; - version = "1.0.18"; - format = "setuptools"; - - disabled = pythonOlder "3.7"; - - src = fetchPypi { - inherit pname version; - hash = "sha256-aQHJiSmaGyABHP17oFH+6JQ9zNJ6pj2+PcE+gsRuhaQ="; - }; - - propagatedBuildInputs = [ - lxml - xmltodict - ]; - - # Module has no test - doCheck = false; - - pythonImportsCheck = [ - "pyialarmxr" - ]; - - meta = with lib; { - description = "Library to interface with Antifurto365 iAlarmXR systems"; - homepage = "https://pypi.org/project/pyialarmxr-homeassistant/"; - license = licenses.mit; - maintainers = with maintainers; [ fab ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index a6c676ea6015..c1e4d27d3ff3 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -117,6 +117,7 @@ mapAliases ({ pycallgraph = throw "pycallgraph has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-01-18 pycryptodome-test-vectors = throw "pycryptodome-test-vectors has been removed because it is an internal package to pycryptodome"; # added 2022-05-28 pyialarmxr = pyialarmxr-homeassistant; # added 2022-06-07 + pyialarmxr-homeassistant = throw "The package was removed together with the component support in home-assistant 2022.7.0"; # added 2022-07-07 pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20 PyLD = pyld; # added 2022-06-22 pymc3 = pymc; # added 2022-06-05, module was rename starting with 4.0.0 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c6043934d583..df044ef44b38 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7521,8 +7521,6 @@ in { pyialarm = callPackage ../development/python-modules/pyialarm { }; - pyialarmxr-homeassistant = callPackage ../development/python-modules/pyialarmxr-homeassistant { }; - pyicloud = callPackage ../development/python-modules/pyicloud { }; PyICU = callPackage ../development/python-modules/pyicu { };