Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions pkgs/development/python-modules/plover-stroke/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
lib,
fetchPypi,
python3Packages,
setuptools,
pythonImportsCheckHook,
pytestCheckHook,
}:
python3Packages.buildPythonPackage rec {
pname = "plover-stroke";
version = "1.1.0";
pyproject = true;
build-system = [ setuptools ];

nativeCheckInputs = [
pythonImportsCheckHook
pytestCheckHook
];

meta = with lib; {
description = "Helper class for working with steno strokes";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description = "Helper class for working with steno strokes";
description = "Helper class for working with steno strokes";
homepage = "https://github.com/openstenoproject/plover_stroke";

maintainers = with maintainers; [ twey ];
license = licenses.gpl2Plus;
};

src = fetchPypi {
pname = "plover_stroke";
inherit version;
hash = "sha256-3gOyP0ruZrZfaffU7MQjNoG0NUFQLYa/FP3inqpy0VM=";
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9892,6 +9892,8 @@ self: super: with self; {

pkg-about = callPackage ../development/python-modules/pkg-about { };

plover-stroke = callPackage ../development/python-modules/plover-stroke { };

micloud = callPackage ../development/python-modules/micloud { };

mqtt2influxdb = callPackage ../development/python-modules/mqtt2influxdb { };
Expand Down