diff options
| author | Karel Kočí <cynerd@email.cz> | 2026-05-16 13:12:33 +0200 |
|---|---|---|
| committer | Karel Kočí <cynerd@email.cz> | 2026-05-16 13:12:33 +0200 |
| commit | 9492adaded6cb8b246db5a348fb2720dbc184214 (patch) | |
| tree | 1fcef1bf43dcc3b99519928dbd8ca69260cc0c9b /pkgs/docrstfmt | |
| parent | d5ec7b775888827089a668aea58244b2ad4a1e70 (diff) | |
| download | nixos-personal-9492adaded6cb8b246db5a348fb2720dbc184214.tar.gz nixos-personal-9492adaded6cb8b246db5a348fb2720dbc184214.tar.bz2 nixos-personal-9492adaded6cb8b246db5a348fb2720dbc184214.zip | |
Diffstat (limited to 'pkgs/docrstfmt')
| -rw-r--r-- | pkgs/docrstfmt/default.nix | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/pkgs/docrstfmt/default.nix b/pkgs/docrstfmt/default.nix deleted file mode 100644 index 9d2761a..0000000 --- a/pkgs/docrstfmt/default.nix +++ /dev/null @@ -1,52 +0,0 @@ -{ - lib, - python3, - fetchFromGitHub, -}: -python3.pkgs.buildPythonApplication rec { - pname = "docstrfmt"; - version = "2.0.1"; - pyproject = true; - - src = fetchFromGitHub { - owner = "LilSpazJoekp"; - repo = "docstrfmt"; - tag = "v${version}"; - hash = "sha256-DoxRBRCHl/F7nvUiA4+c3DtxggzH9hHtHuoJsyPCA94="; - }; - - build-system = [ - python3.pkgs.flit-core - ]; - - dependencies = with python3.pkgs; [ - black - click - coverage - docutils - libcst - platformdirs - roman - sphinx - tabulate - types-docutils - ]; - - nativeCheckInputs = with python3.pkgs; [ - pytestCheckHook - pytest-aiohttp - ]; - - pythonImportsCheck = [ - "docstrfmt" - ]; - - meta = { - description = "Formatter for reStructuredText"; - homepage = "https://github.com/LilSpazJoekp/docstrfmt"; - changelog = "https://github.com/LilSpazJoekp/docstrfmt/blob/${src.tag}/CHANGES.rst"; - license = lib.licenses.mit; - maintainers = with lib.maintainers; [doronbehar]; - mainProgram = "docstrfmt"; - }; -} |
