From 8d973ac433835e97b5959aa311fc0ed4cfac2289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Wed, 29 Oct 2025 16:46:51 -0700 Subject: [PATCH] python3Packages.sentence-stream: 1.2.0 -> 1.2.1 Diff: https://github.com/OHF-Voice/sentence-stream/compare/v1.2.0...v1.2.1 Changelog: https://github.com/OHF-Voice/sentence-stream/blob/v1.2.1/CHANGELOG.md --- .../python-modules/sentence-stream/default.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/sentence-stream/default.nix b/pkgs/development/python-modules/sentence-stream/default.nix index 76d9d6bd2e49..0695dd4d9e6f 100644 --- a/pkgs/development/python-modules/sentence-stream/default.nix +++ b/pkgs/development/python-modules/sentence-stream/default.nix @@ -10,14 +10,14 @@ buildPythonPackage rec { pname = "sentence-stream"; - version = "1.2.0"; + version = "1.2.1"; pyproject = true; src = fetchFromGitHub { owner = "OHF-Voice"; repo = "sentence-stream"; tag = "v${version}"; - hash = "sha256-xGxgGOl8PM5Nc7ApeiRKdaKeoxsc/a7oBF+Ld+vtYDo="; + hash = "sha256-KCKOiY2x+gj02PR0ps2e5Ei6o17tk5ujgCTr3/fkV0Y="; }; build-system = [ @@ -28,10 +28,6 @@ buildPythonPackage rec { regex ]; - pythonRelaxDeps = [ - "regex" - ]; - nativeCheckInputs = [ pytest-asyncio pytestCheckHook @@ -42,7 +38,7 @@ buildPythonPackage rec { ]; meta = { - description = "A small sentence splitter for text streams"; + description = "Small sentence splitter for text streams"; homepage = "https://github.com/OHF-Voice/sentence-stream"; changelog = "https://github.com/OHF-Voice/sentence-stream/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.asl20;