about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-03-21 17:12:00 +0100
committerGitHub <noreply@github.com>2024-03-21 17:12:00 +0100
commit4a1d371d58edf471807656334e89b30fceb384d9 (patch)
treef1717b254d29dc1efc3452076b32ec0ca7ff8c91
parentbef1f8f8d359819d0851f21629975f9cfa84381c (diff)
parent5af1df8b7d8d4090a151a5373978bddd03947f6d (diff)
downloadnixlib-4a1d371d58edf471807656334e89b30fceb384d9.tar
nixlib-4a1d371d58edf471807656334e89b30fceb384d9.tar.gz
nixlib-4a1d371d58edf471807656334e89b30fceb384d9.tar.bz2
nixlib-4a1d371d58edf471807656334e89b30fceb384d9.tar.lz
nixlib-4a1d371d58edf471807656334e89b30fceb384d9.tar.xz
nixlib-4a1d371d58edf471807656334e89b30fceb384d9.tar.zst
nixlib-4a1d371d58edf471807656334e89b30fceb384d9.zip
Merge pull request #297738 from NixOS/strictdoc-misc
strictdoc: cleanup file after pkgs/by-name move
-rw-r--r--pkgs/applications/science/engineering/strictdoc/default.nix76
1 files changed, 0 insertions, 76 deletions
diff --git a/pkgs/applications/science/engineering/strictdoc/default.nix b/pkgs/applications/science/engineering/strictdoc/default.nix
deleted file mode 100644
index 0caac7a4fe93..000000000000
--- a/pkgs/applications/science/engineering/strictdoc/default.nix
+++ /dev/null
@@ -1,76 +0,0 @@
-{ lib
-, fetchFromGitHub
-, python3
-}:
-
-python3.pkgs.buildPythonApplication rec {
-  pname = "strictdoc";
-  version = "0.0.40";
-  pyproject = true;
-
-  src = fetchFromGitHub {
-    owner = "strictdoc-project";
-    repo = "strictdoc";
-    rev = "refs/tags/${version}";
-    hash = "sha256-kZ8qVhroSPSGAcgUFZb1vRI6JoFyjeg/0qYosbRnwyc=";
-  };
-
-  pythonRelaxDeps = true;
-
-  nativeBuildInputs = with python3.pkgs; [
-    hatchling
-    pythonRelaxDepsHook
-  ];
-
-  propagatedBuildInputs = with python3.pkgs; [
-    beautifulsoup4
-    datauri
-    docutils
-    fastapi
-    html5lib
-    jinja2
-    lxml
-    markupsafe
-    pybtex
-    pygments
-    python-multipart
-    reqif
-    selenium
-    setuptools
-    spdx-tools
-    textx
-    toml
-    uvicorn
-    webdriver-manager
-    websockets
-    xlrd
-    xlsxwriter
-  ] ++ uvicorn.optional-dependencies.standard;
-
-  nativeCheckInputs = with python3.pkgs; [
-    httpx
-    pytestCheckHook
-  ];
-
-  pythonImportsCheck = [
-    "strictdoc"
-  ];
-
-  disabledTests = [
-    # fixture 'fs' not found
-    "test_001_load_from_files"
-  ];
-
-  disabledTestPaths = [
-    "tests/end2end/"
-  ];
-
-  meta = with lib; {
-    description = "Software requirements specification tool";
-    mainProgram = "strictdoc";
-    homepage = "https://github.com/strictdoc-project/strictdoc";
-    changelog = "https://github.com/strictdoc-project/strictdoc/releases/tag/${version}";
-    license = licenses.asl20;
-    maintainers = with maintainers; [ yuu ];
-  };
-}