Merge pull request #289359 from IogaMaster/kalamine

kalamine: init at 0.22
This commit is contained in:
Peder Bergebakken Sundt 2024-06-08 15:34:30 +02:00 committed by GitHub
commit d48102ba12
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,38 @@
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "kalamine";
version = "0.22";
pyproject = true;
src = fetchFromGitHub {
owner = "OneDeadKey";
repo = "kalamine";
rev = "v${version}";
hash = "sha256-SPXVFeysVF/6RqjhXmlPc+3m5vnVndJb7LQshQZBeg8=";
};
nativeBuildInputs = [
python3.pkgs.hatchling
];
propagatedBuildInputs = with python3.pkgs; [
click
lxml
pyyaml
tomli
];
pythonImportsCheck = [ "kalamine" ];
meta = with lib; {
description = "Keyboard Layout Maker";
homepage = "https://github.com/OneDeadKey/kalamine/";
license = licenses.mit;
maintainers = with maintainers; [ iogamaster ];
mainProgram = "kalamine";
};
}