python312Packages.python-yakh: init at 0.4.1

This commit is contained in:
Doron Behar
2025-01-15 11:16:02 +02:00
parent bbc6850025
commit db0dc6e40e
2 changed files with 46 additions and 0 deletions
@@ -0,0 +1,44 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
poetry-core,
# nativeCheckInputs
pytestCheckHook,
}:
buildPythonPackage rec {
# NOTE that this is not https://pypi.org/project/yakh/
pname = "python-yakh";
version = "0.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "petereon";
repo = "yakh";
rev = "v${version}";
hash = "sha256-mXG0fit+0MLOkn2ezRzLboDGKxkES/T7kyWAfaF0EQQ=";
};
build-system = [
poetry-core
];
pythonImportsCheck = [
"yakh"
];
nativeCheckInputs = [
pytestCheckHook
];
meta = {
description = "Yet Another Keypress Handler";
homepage = "https://pypi.org/project/python-yakh";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ doronbehar ];
};
}
+2
View File
@@ -10801,6 +10801,8 @@ self: super: with self; {
python-idzip = callPackage ../development/python-modules/python-idzip { };
python-yakh = callPackage ../development/python-modules/python-yakh { };
pythonfinder = callPackage ../development/python-modules/pythonfinder { };
pytomorrowio = callPackage ../development/python-modules/pytomorrowio { };