Skip to content

Commit

Permalink
pythonPackages.plover-stroke: init at 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Twey committed Oct 9, 2024
1 parent f0668c1 commit 19be664
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/development/python-modules/plover-stroke/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
lib,
fetchPypi,
python3Packages,
setuptools,
}:
python3Packages.buildPythonPackage rec {
pname = "plover-stroke";
version = "1.1.0";
pyproject = true;
build-system = [ setuptools ];

meta = with lib; {
description = "Helper class for working with steno strokes";
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

0 comments on commit 19be664

Please sign in to comment.