mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.pysmartapp: kill
Unused leaf, dropped from home-assistant in 2025.3.
This commit is contained in:
parent
74242e70d8
commit
a188c59780
3 changed files with 1 additions and 48 deletions
|
|
@ -1,46 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
httpsig,
|
||||
pytest-asyncio,
|
||||
pytestCheckHook,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pysmartapp";
|
||||
version = "0.3.5";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "andrewsayre";
|
||||
repo = "pysmartapp";
|
||||
tag = version;
|
||||
hash = "sha256-RiRGOO5l5hcHllyDDGLtQHr51JOTZhAa/wK8BfMqmAY=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ httpsig ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "pysmartapp" ];
|
||||
|
||||
disabledTestPaths = [
|
||||
# These tests are outdated
|
||||
"tests/test_smartapp.py"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Python implementation to work with SmartApp lifecycle events";
|
||||
homepage = "https://github.com/andrewsayre/pysmartapp";
|
||||
changelog = "https://github.com/andrewsayre/pysmartapp/releases/tag/${src.tag}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
|
|
@ -489,6 +489,7 @@ mapAliases {
|
|||
pyside6-fluent-widgets = throw "pyside6-fluent-widgets has been removed, since it is unmaintained"; # added 2025-08-20
|
||||
pysidesix-frameless-window = throw "pysidesix-frameless-window has been removed, since it is unmaintained"; # added 2025-08-20
|
||||
pysmart-smartx = throw "'pysmart-smartx' has been renamed to/replaced by 'pysmart'"; # Converted to throw 2025-10-29
|
||||
pysmartapp = throw "'pysmartapp' has been removed since it is deprecated and archived upstream."; # Added 2026-06-03
|
||||
pySmartDL = throw "'pySmartDL' has been renamed to/replaced by 'pysmartdl'"; # Converted to throw 2025-10-29
|
||||
pysmi-lextudio = throw "'pysmi-lextudio' has been renamed to/replaced by 'pysmi'"; # Converted to throw 2025-10-29
|
||||
pysnmp-lextudio = throw "'pysnmp-lextudio' has been renamed to/replaced by 'pysnmp'"; # Converted to throw 2025-10-29
|
||||
|
|
|
|||
|
|
@ -15538,8 +15538,6 @@ self: super: with self; {
|
|||
|
||||
pysmart = callPackage ../development/python-modules/pysmart { };
|
||||
|
||||
pysmartapp = callPackage ../development/python-modules/pysmartapp { };
|
||||
|
||||
pysmartdl = callPackage ../development/python-modules/pysmartdl { };
|
||||
|
||||
pysmartthings = callPackage ../development/python-modules/pysmartthings { };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue