python3Packages.tikteck: drop
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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
|
||||
|
||||
@@ -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; };
|
||||
|
||||
Reference in New Issue
Block a user