forked from mirrors/nixpkgs
python3Packages.pyialarmxr-homeassistant: drop
Was part of the ialarm_xr component of home-assistant, which was removed in the 2022.7.0 release.
This commit is contained in:
parent
9b7bd914d2
commit
6802686d69
3 changed files with 1 additions and 41 deletions
|
@ -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 ];
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -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
|
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
|
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 = 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
|
pylibgen = throw "pylibgen is unmaintained upstreamed, and removed from nixpkgs"; # added 2020-06-20
|
||||||
PyLD = pyld; # added 2022-06-22
|
PyLD = pyld; # added 2022-06-22
|
||||||
pymc3 = pymc; # added 2022-06-05, module was rename starting with 4.0.0
|
pymc3 = pymc; # added 2022-06-05, module was rename starting with 4.0.0
|
||||||
|
|
|
@ -7521,8 +7521,6 @@ in {
|
||||||
|
|
||||||
pyialarm = callPackage ../development/python-modules/pyialarm { };
|
pyialarm = callPackage ../development/python-modules/pyialarm { };
|
||||||
|
|
||||||
pyialarmxr-homeassistant = callPackage ../development/python-modules/pyialarmxr-homeassistant { };
|
|
||||||
|
|
||||||
pyicloud = callPackage ../development/python-modules/pyicloud { };
|
pyicloud = callPackage ../development/python-modules/pyicloud { };
|
||||||
|
|
||||||
PyICU = callPackage ../development/python-modules/pyicu { };
|
PyICU = callPackage ../development/python-modules/pyicu { };
|
||||||
|
|
Loading…
Add table
Reference in a new issue