11 buildPythonPackage rec {
12 pname = "aspell-python";
14 format = "setuptools";
19 pname = "aspell-python-py3";
21 extension = "tar.bz2";
22 hash = "sha256-IEKRDmQY5fOH9bQk0dkUAy7UzpBOoZW4cNtVvLMcs40=";
34 export ASPELL_CONF="dict-dir ${aspellDicts.en}/lib/aspell"
35 export HOME=$(mktemp -d)
42 disabledTests = lib.optionals (pythonAtLeast "3.10") [
43 # https://github.com/WojciechMula/aspell-python/issues/22
49 pythonImportsCheck = [
54 description = "Python wrapper for aspell (C extension and Python version)";
55 homepage = "https://github.com/WojciechMula/aspell-python";
56 license = licenses.bsd3;
57 maintainers = with maintainers; [ SuperSandro2000 ];