aboutsummaryrefslogtreecommitdiff
path: root/pkgs/docrstfmt/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/docrstfmt/default.nix')
-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";
- };
-}