Unverified Commit fa3efb7a authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #241541 from mweinelt/faster-fifo-init

python310Packages.faster-fifo: init at 1.4.5
parents 359e1136 16fa8dea
Loading
Loading
Loading
Loading
+46 −0
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.5";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "alex-petrenko";
    repo = "faster-fifo";
    rev = "v${version}";
    hash = "sha256-35kD+RWXwUXHG5leTVj4wY6hJAjDka69YczgSTIbCeg=";
  };

  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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -3540,6 +3540,8 @@ 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 { };