13da32182d
GitOrigin-RevId: a7855f2235a1876f97473a76151fec2afa02b287
41 lines
1.3 KiB
Nix
41 lines
1.3 KiB
Nix
{ lib, buildPythonApplication, fetchFromGitHub, pytestCheckHook, pytest-dependency, aspell-python, aspellDicts, chardet }:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "codespell";
|
|
version = "2.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "codespell-project";
|
|
repo = "codespell";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-H/istsEt6kYzwvwy8GlOH0fkMTWbEdXVF1P1qO6sITs=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.cfg \
|
|
--replace "--cov=codespell_lib" "" \
|
|
--replace "--cov-report=" ""
|
|
'';
|
|
|
|
checkInputs = [ aspell-python chardet pytestCheckHook pytest-dependency ];
|
|
|
|
preCheck = ''
|
|
export ASPELL_CONF="dict-dir ${aspellDicts.en}/lib/aspell"
|
|
'';
|
|
|
|
disabledTests = [
|
|
# tries to run not fully installed script
|
|
"test_command"
|
|
# error 'dateset' should not be in aspell dictionaries (en, en_GB, en_US, en_CA, en_AU) for dictionary /build/source/codespell_lib/tests/../data/dictionary.txt
|
|
"test_dictionary_formatting"
|
|
];
|
|
|
|
pythonImportsCheck = [ "codespell_lib" ];
|
|
|
|
meta = with lib; {
|
|
description = "Fix common misspellings in source code";
|
|
homepage = "https://github.com/codespell-project/codespell";
|
|
license = with licenses; [ gpl2Only cc-by-sa-30 ];
|
|
maintainers = with maintainers; [ johnazoidberg SuperSandro2000 ];
|
|
};
|
|
}
|