aboutsummaryrefslogtreecommitdiff
path: root/pkgs/docrstfmt
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2026-05-16 13:12:33 +0200
committerKarel Kočí <cynerd@email.cz>2026-05-16 13:12:33 +0200
commit9492adaded6cb8b246db5a348fb2720dbc184214 (patch)
tree1fcef1bf43dcc3b99519928dbd8ca69260cc0c9b /pkgs/docrstfmt
parentd5ec7b775888827089a668aea58244b2ad4a1e70 (diff)
downloadnixos-personal-9492adaded6cb8b246db5a348fb2720dbc184214.tar.gz
nixos-personal-9492adaded6cb8b246db5a348fb2720dbc184214.tar.bz2
nixos-personal-9492adaded6cb8b246db5a348fb2720dbc184214.zip
treewide: systems modificationsHEADmaster
Diffstat (limited to 'pkgs/docrstfmt')
-rw-r--r--pkgs/docrstfmt/default.nix52
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";
- };
-}