Loading pkgs/development/python-modules/faster-fifo/default.nix 0 → 100644 +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 ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading Loading
pkgs/development/python-modules/faster-fifo/default.nix 0 → 100644 +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 ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -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 { }; Loading