Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
aspell,
|
|
aspellDicts,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
isPy27,
|
|
pytestCheckHook,
|
|
pythonAtLeast,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aspell-python";
|
|
version = "1.15";
|
|
pyproject = true;
|
|
|
|
disabled = isPy27;
|
|
|
|
src = fetchPypi {
|
|
pname = "aspell-python-py3";
|
|
inherit version;
|
|
extension = "tar.bz2";
|
|
hash = "sha256-IEKRDmQY5fOH9bQk0dkUAy7UzpBOoZW4cNtVvLMcs40=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
buildInputs = [ aspell ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
preCheck = ''
|
|
export ASPELL_CONF="dict-dir ${aspellDicts.en}/lib/aspell"
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
enabledTestPaths = [ "test/unittests.py" ];
|
|
|
|
disabledTests = lib.optionals (pythonAtLeast "3.10") [
|
|
# https://github.com/WojciechMula/aspell-python/issues/22
|
|
"test_add"
|
|
"test_get"
|
|
"test_saveall"
|
|
];
|
|
|
|
pythonImportsCheck = [ "aspell" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python wrapper for aspell (C extension and Python version)";
|
|
homepage = "https://github.com/WojciechMula/aspell-python";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|