9 buildPythonPackage rec {
10 pname = "pyspellchecker";
14 src = fetchFromGitHub {
16 repo = "pyspellchecker";
17 rev = "refs/tags/v${version}";
18 hash = "sha256-8IwTMj/RqMc9UqhzyvmrirPGuMEwj3iMr+FmF+8312U=";
21 nativeBuildInputs = [ setuptools ];
23 nativeCheckInputs = [ pytestCheckHook ];
26 description = "Pure python spell checking";
27 homepage = "https://github.com/barrust/pyspellchecker";
28 license = licenses.mit;
29 maintainers = with maintainers; [ zendo ];