Skip to content

Commit

Permalink
python3Packages.plover-lapwing-aio: init at 1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Twey committed Oct 9, 2024
1 parent 3ea4c10 commit 7d5da2e
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
44 changes: 44 additions & 0 deletions pkgs/development/python-modules/plover-lapwing-aio/default.nix
Original file line number Diff line number Diff line change
@@ -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
];
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 7d5da2e

Please sign in to comment.