typstwriter: init at 0.1

This commit is contained in:
Pol Dellaiera 2024-07-02 11:28:41 +02:00
parent 0f9b02a8ab
commit ff4904b7a7
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA

View File

@ -0,0 +1,46 @@
{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication rec {
pname = "typstwriter";
version = "0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Bzero";
repo = "typstwriter";
rev = "V${version}";
hash = "sha256-xgBBZTViMzYgxaYb24druUwLqVWdf9utCETC+goLqYk=";
};
build-system = [ python3.pkgs.flit-core ];
dependencies = with python3.pkgs; [
pygments
pyside6
qtpy
send2trash
superqt
];
optional-dependencies = with python3.pkgs; {
tests = [
pytest
pytest-qt
];
};
pythonImportsCheck = [ "typstwriter" ];
meta = {
changelog = "https://github.com/Bzero/typstwriter/releases/tag/V${version}";
description = "Integrated editor for the typst typesetting system";
homepage = "https://github.com/Bzero/typstwriter";
license = lib.licenses.mit;
mainProgram = "typstwriter";
maintainers = with lib.maintainers; [ drupol ];
};
}