strictdoc: 0.10.1 -> 0.18.1

This commit is contained in:
puzzlewolf
2026-03-02 12:38:31 +01:00
parent 685f770a18
commit feed1c9e58
+7 -3
View File
@@ -6,14 +6,14 @@
python3.pkgs.buildPythonApplication (finalAttrs: {
pname = "strictdoc";
version = "0.10.1";
version = "0.18.1";
pyproject = true;
src = fetchFromGitHub {
owner = "strictdoc-project";
repo = "strictdoc";
tag = finalAttrs.version;
hash = "sha256-TXrSv6V5fMhcx4YolTfsFwgGL5qxNp67iv62KDC5H00=";
hash = "sha256-pfKEPdEYCW8pMOD5DH9oNVK1ypQKfFMUOXryte+JdCs=";
};
build-system = [
@@ -32,6 +32,9 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
lark
lxml
openpyxl
orjson
pandas
plotly
pybtex
pygments
python-multipart
@@ -46,6 +49,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
tree-sitter
tree-sitter-grammars.tree-sitter-cpp
tree-sitter-grammars.tree-sitter-python
tree-sitter-grammars.tree-sitter-rust
uvicorn
webdriver-manager
websockets
@@ -76,7 +80,7 @@ python3.pkgs.buildPythonApplication (finalAttrs: {
homepage = "https://github.com/strictdoc-project/strictdoc";
changelog = "https://github.com/strictdoc-project/strictdoc/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = [ ];
maintainers = [ lib.maintainers.puzzlewolf ];
mainProgram = "strictdoc";
};
})