Merge pull request #323987 from drupol/init/typstwrite-0-1
typstwriter: init at 0.1
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user