From 7d5da2ee76a507e159935162886634d0618126ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?James=20=E2=80=98Twey=E2=80=99=20Kay?= Date: Wed, 9 Oct 2024 12:59:38 +0100 Subject: [PATCH] python3Packages.plover-lapwing-aio: init at 1.3.4 --- .../plover-lapwing-aio/default.nix | 44 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 46 insertions(+) create mode 100644 pkgs/development/python-modules/plover-lapwing-aio/default.nix diff --git a/pkgs/development/python-modules/plover-lapwing-aio/default.nix b/pkgs/development/python-modules/plover-lapwing-aio/default.nix new file mode 100644 index 00000000000000..a0b0d749e49ea5 --- /dev/null +++ b/pkgs/development/python-modules/plover-lapwing-aio/default.nix @@ -0,0 +1,44 @@ +{ + lib, + fetchPypi, + python3Packages, + plover, + plover-dict-commands, + plover-last-translation, + plover-modal-dictionary, + plover-python-dictionary, + plover-stitching, + setuptools, + pythonImportsCheckHook, +}: +python3Packages.buildPythonPackage rec { + pname = "plover-lapwing-aio"; + version = "1.3.4"; + pyproject = true; + build-system = [ setuptools ]; + + meta = with lib; { + description = "Automatically installs all the necessary plugins and dictionaries for using Lapwing theory with Plover"; + maintainers = with maintainers; [ twey ]; + license = licenses.gpl2Plus; + }; + + src = fetchPypi { + pname = "plover_lapwing_aio"; + inherit version; + hash = "sha256-0GqmWGe5uN2JfnH/XMWrIH5As3xueREBU6nk3gGi3Vw="; + }; + + nativeCheckInputs = [ + pythonImportsCheckHook + ]; + + propagatedBuildInputs = [ + plover + plover-dict-commands + plover-last-translation + plover-modal-dictionary + plover-python-dictionary + plover-stitching + ]; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b9e832c0b75b76..8ceff6d35059a1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9898,6 +9898,8 @@ self: super: with self; { plover-dict-commands = callPackage ../development/python-modules/plover-dict-commands { }; + plover-lapwing-aio = callPackage ../development/python-modules/plover-lapwing-aio { }; + plover-last-translation = callPackage ../development/python-modules/plover-last-translation { }; plover-modal-dictionary = callPackage ../development/python-modules/plover-modal-dictionary { };