Unverified Commit bf80eeab authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python311Packages.faster-fifo: drop

Was used in frigate, but ultimately removed.
parent 3ea5320a
Loading
Loading
Loading
Loading
+0 −45
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,

  # build-system
  cython,
  setuptools,

  # tests
  numpy,
  unittestCheckHook,
}:

buildPythonPackage rec {
  pname = "faster-fifo";
  version = "1.4.6";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "alex-petrenko";
    repo = "faster-fifo";
    rev = "v${version}";
    hash = "sha256-vgaaIJTtNg2XqEZ9TB7tTMPJ9yMyWjtfdgNU/lcNLcg=";
  };

  nativeBuildInputs = [
    cython
    setuptools
  ];

  pythonImportsCheck = [ "faster_fifo" ];

  nativeCheckInputs = [
    numpy
    unittestCheckHook
  ];

  meta = with lib; {
    description = "Faster alternative to Python's multiprocessing.Queue (IPC FIFO queue";
    homepage = "https://github.com/alex-petrenko/faster-fifo";
    license = licenses.mit;
    maintainers = with maintainers; [ hexa ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -161,6 +161,7 @@ mapAliases ({
  face_recognition_models = face-recognition-models; # added 2022-10-15
  factory_boy = factory-boy; # added 2023-10-08
  fake_factory = throw "fake_factory has been removed because it is unused and deprecated by upstream since 2016."; # added 2022-05-30
  faster-fifo = throw "faster-fifo has been removed since it was an unused leaf package"; # added 2024-07-02
  fastnlo_toolkit = fastnlo-toolkit; # added 2024-01-03
  fastpair = throw "fastpair is unmaintained upstream and has therefore been removed"; # added 2024-05-01
  faulthandler = throw "faulthandler is built into ${python.executable}"; # added 2021-07-12
+0 −2
Original line number Diff line number Diff line
@@ -4175,8 +4175,6 @@ self: super: with self; {
  fastentrypoints = callPackage ../development/python-modules/fastentrypoints { };
  faster-fifo = callPackage ../development/python-modules/faster-fifo { };
  faster-whisper = callPackage ../development/python-modules/faster-whisper { };
  fastimport = callPackage ../development/python-modules/fastimport { };