diff options
| author | stuebinm | 2026-06-08 23:41:22 +0200 |
|---|---|---|
| committer | stuebinm | 2026-06-08 23:41:22 +0200 |
| commit | 255571421358da1741d6253f1bc2bd6ebd5a9123 (patch) | |
| tree | 24efb3534e0818b2867322b9fc16ca8d0a90a7e6 /pkgs/plover/rtf_tokenize.nix | |
| parent | 6935f2365fdd8defd3f88034536902e72ee472d4 (diff) | |
It has finally been un-broken, so bundling this in is no longer needed
Diffstat (limited to 'pkgs/plover/rtf_tokenize.nix')
| -rw-r--r-- | pkgs/plover/rtf_tokenize.nix | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/plover/rtf_tokenize.nix b/pkgs/plover/rtf_tokenize.nix deleted file mode 100644 index 805845f..0000000 --- a/pkgs/plover/rtf_tokenize.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ - lib, - buildPythonPackage, - fetchFromGitHub, - setuptools, - pytestCheckHook, -}: - -buildPythonPackage rec { - pname = "rtf-tokenize"; - version = "1.0.0"; - pyproject = true; - - src = fetchFromGitHub { - owner = "openstenoproject"; - repo = "rtf_tokenize"; - tag = version; - hash = "sha256-zwD2sRYTY1Kmm/Ag2hps9VRdUyQoi4zKtDPR+F52t9A="; - }; - - build-system = [ setuptools ]; - - nativeCheckInputs = [ pytestCheckHook ]; - - pythonImportsCheck = [ "rtf_tokenize" ]; - - meta = { - description = "Simple RTF tokenizer package for Python"; - homepage = "https://github.com/openstenoproject/rtf_tokenize"; - license = lib.licenses.gpl2Plus; # https://github.com/openstenoproject/rtf_tokenize/issues/1 - maintainers = with lib.maintainers; [ pandapip1 ]; - }; -} |
