strictdoc: cleanup file after pkgs/by-name move

authored by Sandro and committed by GitHub 5af1df8b d23f4b14

-76
-76
pkgs/applications/science/engineering/strictdoc/default.nix
··· 1 - { lib 2 - , fetchFromGitHub 3 - , python3 4 - }: 5 - 6 - python3.pkgs.buildPythonApplication rec { 7 - pname = "strictdoc"; 8 - version = "0.0.40"; 9 - pyproject = true; 10 - 11 - src = fetchFromGitHub { 12 - owner = "strictdoc-project"; 13 - repo = "strictdoc"; 14 - rev = "refs/tags/${version}"; 15 - hash = "sha256-kZ8qVhroSPSGAcgUFZb1vRI6JoFyjeg/0qYosbRnwyc="; 16 - }; 17 - 18 - pythonRelaxDeps = true; 19 - 20 - nativeBuildInputs = with python3.pkgs; [ 21 - hatchling 22 - pythonRelaxDepsHook 23 - ]; 24 - 25 - propagatedBuildInputs = with python3.pkgs; [ 26 - beautifulsoup4 27 - datauri 28 - docutils 29 - fastapi 30 - html5lib 31 - jinja2 32 - lxml 33 - markupsafe 34 - pybtex 35 - pygments 36 - python-multipart 37 - reqif 38 - selenium 39 - setuptools 40 - spdx-tools 41 - textx 42 - toml 43 - uvicorn 44 - webdriver-manager 45 - websockets 46 - xlrd 47 - xlsxwriter 48 - ] ++ uvicorn.optional-dependencies.standard; 49 - 50 - nativeCheckInputs = with python3.pkgs; [ 51 - httpx 52 - pytestCheckHook 53 - ]; 54 - 55 - pythonImportsCheck = [ 56 - "strictdoc" 57 - ]; 58 - 59 - disabledTests = [ 60 - # fixture 'fs' not found 61 - "test_001_load_from_files" 62 - ]; 63 - 64 - disabledTestPaths = [ 65 - "tests/end2end/" 66 - ]; 67 - 68 - meta = with lib; { 69 - description = "Software requirements specification tool"; 70 - mainProgram = "strictdoc"; 71 - homepage = "https://github.com/strictdoc-project/strictdoc"; 72 - changelog = "https://github.com/strictdoc-project/strictdoc/releases/tag/${version}"; 73 - license = licenses.asl20; 74 - maintainers = with maintainers; [ yuu ]; 75 - }; 76 - }