python3Packages.plover-python-dictionary: init at 1.2.1

This commit is contained in:
Yueh-Shun Li
2026-05-08 13:36:25 +08:00
parent e0a26f0ad6
commit 6174a6280b
2 changed files with 51 additions and 0 deletions
@@ -0,0 +1,49 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
wheel,
pytestCheckHook,
plover,
}:
buildPythonPackage (finalAttrs: {
pname = "plover-python-dictionary";
version = "1.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "opensteno";
repo = "plover_python_dictionary";
tag = finalAttrs.version;
hash = "sha256-4li8WjriJdeLbu+JANuVOb9ejBGusHBm+AaLxyy91A0=";
};
build-system = [
setuptools
wheel
];
dependencies = [
plover
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"plover_python_dictionary"
];
meta = {
description = "Python dictionaries support for Plover";
homepage = "https://github.com/opensteno/plover_python_dictionary";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [
pandapip1
ShamrockLee
];
};
})
+2
View File
@@ -12674,6 +12674,8 @@ self: super: with self; {
plover-modal-dictionary = callPackage ../development/python-modules/plover-modal-dictionary { };
plover-python-dictionary = callPackage ../development/python-modules/plover-python-dictionary { };
plover-stroke = callPackage ../development/python-modules/plover-stroke { };
plover_4 = callPackage ../development/python-modules/plover/4.nix {