about summary refs log tree commit diff
path: root/pkgs/development/tools/codespell/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/tools/codespell/default.nix')
-rw-r--r--pkgs/development/tools/codespell/default.nix49
1 files changed, 0 insertions, 49 deletions
diff --git a/pkgs/development/tools/codespell/default.nix b/pkgs/development/tools/codespell/default.nix
deleted file mode 100644
index da39f0f75992..000000000000
--- a/pkgs/development/tools/codespell/default.nix
+++ /dev/null
@@ -1,49 +0,0 @@
-{ lib
-, fetchFromGitHub
-, aspellDicts
-, python3
-}:
-
-python3.pkgs.buildPythonApplication rec {
-  pname = "codespell";
-  version = "2.3.0";
-  format = "pyproject";
-
-  src = fetchFromGitHub {
-    owner = "codespell-project";
-    repo = "codespell";
-    rev = "v${version}";
-    sha256 = "sha256-X3Pueu0E7Q57sbKSXqCZki4/PUb1WyWk/Zmj+lhVTM8=";
-  };
-
-  nativeBuildInputs = with python3.pkgs; [
-    setuptools-scm
-  ];
-
-  nativeCheckInputs = with python3.pkgs; [
-    aspell-python
-    chardet
-    pytestCheckHook
-    pytest-cov-stub
-    pytest-dependency
-  ];
-
-  preCheck = ''
-    export ASPELL_CONF="dict-dir ${aspellDicts.en}/lib/aspell"
-  '';
-
-  disabledTests = [
-    # tries to run not fully installed script
-    "test_basic"
-  ];
-
-  pythonImportsCheck = [ "codespell_lib" ];
-
-  meta = with lib; {
-    description = "Fix common misspellings in source code";
-    mainProgram = "codespell";
-    homepage = "https://github.com/codespell-project/codespell";
-    license = with licenses; [ gpl2Only cc-by-sa-30 ];
-    maintainers = with maintainers; [ johnazoidberg SuperSandro2000 ];
-  };
-}