From 34d1bd445950aec629fdf70a3f22fcc6bc9aa84b Mon Sep 17 00:00:00 2001 From: ruro Date: Sat, 8 Feb 2025 16:58:29 +0300 Subject: [PATCH] python3Packages.boxx: remove This package was only used as a dependency of bpycv which was removed in the previous commit. --- .../python-modules/boxx/default.nix | 44 ------------------- pkgs/top-level/python-aliases.nix | 1 + pkgs/top-level/python-packages.nix | 2 - pkgs/top-level/release-cuda.nix | 1 - 4 files changed, 1 insertion(+), 47 deletions(-) delete mode 100644 pkgs/development/python-modules/boxx/default.nix diff --git a/pkgs/development/python-modules/boxx/default.nix b/pkgs/development/python-modules/boxx/default.nix deleted file mode 100644 index de23a4934ce0..000000000000 --- a/pkgs/development/python-modules/boxx/default.nix +++ /dev/null @@ -1,44 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchPypi, - imageio, - matplotlib, - numpy, - pandas, - pyopengl, - scikit-image, - seaborn, - snakeviz, -}: - -buildPythonPackage rec { - pname = "boxx"; - version = "0.10.14"; - format = "setuptools"; - - src = fetchPypi { - inherit pname version; - hash = "sha256-unGnmPksEuqFXHTWJkj9Gv2G/qPDgT6AZXYiG2gtkEA="; - }; - - propagatedBuildInputs = [ - imageio - matplotlib - numpy - pandas - pyopengl - scikit-image - seaborn - snakeviz - ]; - - pythonImportsCheck = [ "boxx" ]; - - meta = with lib; { - description = "Tool-box for efficient build and debug for Scientific Computing and Computer Vision"; - homepage = "https://github.com/DIYer22/boxx"; - license = licenses.mit; - maintainers = with maintainers; [ lucasew ]; - }; -} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 4f86ef14f255..776b509a8361 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -92,6 +92,7 @@ mapAliases ({ 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 boto = throw "boto was removed as it is deprecated upstream, had not been updated since 2018, and failed to build; please use boto3 and botocore"; # Added 2024-09-22 + boxx = throw "boxx was removed as it is no longer used by any packages in nixpkgs."; # added 2025-02-08 bpycv = throw "bpycv was removed as it is incompatible with blender version 4 or later."; # added 2025-02-08 bsblan = python-bsblan; # added 2022-11-04 btchip = btchip-python; # added 2023-03-03 diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4935604cd262..75a2e80215fd 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1876,8 +1876,6 @@ self: super: with self; { bottleneck = callPackage ../development/python-modules/bottleneck { }; - boxx = callPackage ../development/python-modules/boxx { }; - bpemb = callPackage ../development/python-modules/bpemb { }; bpylist2 = callPackage ../development/python-modules/bpylist2 { }; diff --git a/pkgs/top-level/release-cuda.nix b/pkgs/top-level/release-cuda.nix index 34b9ed1212c9..a7f4d481b013 100644 --- a/pkgs/top-level/release-cuda.nix +++ b/pkgs/top-level/release-cuda.nix @@ -117,7 +117,6 @@ let xgboost = linux; python3Packages = { - boxx = linux; catboost = linux; cupy = linux; faiss = linux;