From ccbd9e03696b9e07c3f009e6662e6637518c02d7 Mon Sep 17 00:00:00 2001 From: Sigmanificient Date: Tue, 26 Aug 2025 00:49:45 +0200 Subject: [PATCH] python3Packages.bkcharts: drop --- .../python-modules/bkcharts/default.nix | 32 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 -- 3 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 pkgs/development/python-modules/bkcharts/default.nix diff --git a/pkgs/development/python-modules/bkcharts/default.nix b/pkgs/development/python-modules/bkcharts/default.nix deleted file mode 100644 index 737535ce3cf6..000000000000 --- a/pkgs/development/python-modules/bkcharts/default.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, - numpy, - pandas, -}: - -buildPythonPackage rec { - pname = "bkcharts"; - version = "0.2"; - format = "setuptools"; - - src = fetchPypi { - inherit version pname; - sha256 = "a5eaa8e78853dcecaa46345812e4fabe9cd3b96330ebf0809f640a4a0556d72e"; - }; - - propagatedBuildInputs = [ - numpy - pandas - ]; - - # Circular test dependency on bokeh - doCheck = false; - - meta = { - description = "High level chart types built on top of Bokeh"; - homepage = "https://github.com/bokeh/bkcharts"; - license = lib.licenses.bsd3; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index cb4854915657..9fbf0360147c 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -110,6 +110,7 @@ mapAliases ({ bedup = throw "bedup was removed because it was broken and abandoned upstream"; # added 2023-02-04 bip_utils = bip-utils; # 2023-10-08 bitcoin-price-api = throw "bitcoin-price-api has been removed, it was using setuptools 2to3 translation feautre, which has been removed in setuptools 58"; # added 2022-02-15 + bkcharts = throw "'bkcharts' has been removed as the upstream repository was archived in 2018"; # added 2025-08-26 blessings = throw "blessings has been removed in favor of blessed, as it was unmaintained"; # added 2024-08-20 BlinkStick = blinkstick; # added 2023-02-19 blockdiagcontrib-cisco = throw "blockdiagcontrib-cisco is not compatible with blockdiag 2.0.0 and has been removed."; # added 2020-11-29 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1933dcc869dc..53d5ff8b4dac 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1935,8 +1935,6 @@ self: super: with self; { bk7231tools = callPackage ../development/python-modules/bk7231tools { }; - bkcharts = callPackage ../development/python-modules/bkcharts { }; - black = callPackage ../development/python-modules/black { }; black-macchiato = callPackage ../development/python-modules/black-macchiato { };