Unverified Commit 34d1bd44 authored by ruro's avatar ruro
Browse files

python3Packages.boxx: remove

This package was only used as a dependency of bpycv which was removed in
the previous commit.
parent 744912a9
Loading
Loading
Loading
Loading
+0 −44
Original line number Diff line number Diff line
{
  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 ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -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
+0 −2
Original line number Diff line number Diff line
@@ -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 { };
+0 −1
Original line number Diff line number Diff line
@@ -117,7 +117,6 @@ let
      xgboost = linux;

      python3Packages = {
        boxx = linux;
        catboost = linux;
        cupy = linux;
        faiss = linux;