python3Packages.tikteck: drop

This commit is contained in:
Martin Weinelt
2026-07-05 01:06:45 +02:00
parent c51f749570
commit 5d783f96ac
3 changed files with 1 additions and 42 deletions
@@ -1,40 +0,0 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
bluepy,
pycryptodome,
}:
buildPythonPackage rec {
pname = "tikteck";
version = "0.4";
pyproject = true;
# github doesn't have any tags unfortunately
src = fetchPypi {
pname = "tikteck";
inherit version;
hash = "sha256-KEbGT2RXLFMQ49gltOYcbE+ebJ1kiXzhT0DIeVXsSJM=";
};
build-system = [ setuptools ];
dependencies = [
bluepy
pycryptodome
];
pythonImportsCheck = [ "tikteck" ];
# no upstream tests exist
doCheck = false;
meta = {
description = "Control Tikteck Bluetooth LED bulbs";
homepage = "https://github.com/mjg59/python-tikteck";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ethancedwards8 ];
};
}
+1
View File
@@ -645,6 +645,7 @@ mapAliases {
TheanoWithCuda = throw "'TheanoWithCuda' has been renamed to/replaced by 'theanoWithCuda'"; # Converted to throw 2025-10-29
TheanoWithoutCuda = throw "'TheanoWithoutCuda' has been renamed to/replaced by 'theanoWithoutCuda'"; # Converted to throw 2025-10-29
threadpool = throw "'threadpool' has been removed, since it is obsolete"; # Added 2026-01-09
tikteck = throw "'tikteck' has been removed because Home Assistant dropped its integration"; # Added 2026-06-04
tikzplotlib = throw "tikzplotlib was removed because it is incompatible with recent versions of matplotlib and webcolors"; # added 2025-11-11
torchtnt-nightly = throw "'torchtnt-nightly' was only needed as a test dependency for 'torcheval', but these tests are no longer run"; # added 2025-11-12
torchtrune = throw "'torchtune' weas removed because it is unmaintained"; # added 2026-07-02
-2
View File
@@ -19951,8 +19951,6 @@ self: super: with self; {
tika-client = callPackage ../development/python-modules/tika-client { };
tikteck = callPackage ../development/python-modules/tikteck { };
tiktoken = callPackage ../development/python-modules/tiktoken { };
tiledb = callPackage ../development/python-modules/tiledb { inherit (pkgs) tiledb; };