Merge pull request #288061 from ocfox/strictdoc

This commit is contained in:
Sandro 2024-03-20 17:41:43 +01:00 committed by GitHub
commit 9a64f4ba07
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 76 additions and 2 deletions

View file

@ -0,0 +1,76 @@
{ lib
, python3
, fetchFromGitHub
}:
python3.pkgs.buildPythonApplication rec {
pname = "strictdoc";
version = "0.0.49";
pyproject = true;
src = fetchFromGitHub {
owner = "strictdoc-project";
repo = "strictdoc";
rev = version;
hash = "sha256-WtDplupXBtq39oKyo31p5NgXMWtbWgxtpnKn4qCJz3I=";
};
nativeBuildInputs = [
python3.pkgs.hatchling
python3.pkgs.pythonRelaxDepsHook
];
propagatedBuildInputs = with python3.pkgs; [
beautifulsoup4
docutils
fastapi
graphviz
html5lib
jinja2
lxml
pybtex
pygments
datauri
python-multipart
selenium
requests
spdx-tools
webdriver-manager
reqif
setuptools
textx
toml
uvicorn
websockets
xlrd
xlsxwriter
];
passthru.optional-dependencies = with python3.pkgs; {
development = [
invoke
tox
];
nuitka = [
nuitka
ordered-set
];
};
pythonRelaxDeps = [
"python-datauri"
"xlsxwriter"
"lxml"
];
pythonImportsCheck = [ "strictdoc" ];
meta = with lib; {
description = "Software for technical documentation and requirements management";
homepage = "https://github.com/strictdoc-project/strictdoc";
changelog = "https://github.com/strictdoc-project/strictdoc/blob/${src.rev}/CHANGELOG.md";
license = licenses.asl20;
maintainers = with maintainers; [ yuu ];
mainProgram = "strictdoc";
};
}

View file

@ -39145,8 +39145,6 @@ with pkgs;
jflap = callPackage ../applications/science/engineering/jflap { };
strictdoc = python3.pkgs.callPackage ../applications/science/engineering/strictdoc { };
### SCIENCE / ELECTRONICS
adms = callPackage ../applications/science/electronics/adms { };