typstwriter: init at 0.1
This commit is contained in:
parent
0f9b02a8ab
commit
ff4904b7a7
46
pkgs/by-name/ty/typstwriter/package.nix
Normal file
46
pkgs/by-name/ty/typstwriter/package.nix
Normal 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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user