mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
python310Packages.aspell-python: disable failing tests
This commit is contained in:
parent
af311ba307
commit
095f417064
|
@ -1,29 +1,57 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, isPy27, aspell, aspellDicts, python }:
|
||||
{ lib
|
||||
, aspell
|
||||
, aspellDicts
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy27
|
||||
, pytestCheckHook
|
||||
, pythonAtLeast
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aspell-python";
|
||||
version = "1.15";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit version;
|
||||
pname = "aspell-python-py3";
|
||||
inherit version;
|
||||
extension = "tar.bz2";
|
||||
sha256 = "13dk3jrvqmfvf2w9b8afj37d8bh32kcx295lyn3z7r8qch792hi0";
|
||||
hash = "sha256-IEKRDmQY5fOH9bQk0dkUAy7UzpBOoZW4cNtVvLMcs40=";
|
||||
};
|
||||
|
||||
buildInputs = [ aspell ];
|
||||
buildInputs = [
|
||||
aspell
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
preCheck = ''
|
||||
export ASPELL_CONF="dict-dir ${aspellDicts.en}/lib/aspell"
|
||||
export HOME=$(mktemp -d)
|
||||
${python.interpreter} test/unittests.py
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "aspell" ];
|
||||
pytestFlagsArray = [
|
||||
"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)";
|
||||
description = "Python wrapper for aspell (C extension and Python version)";
|
||||
homepage = "https://github.com/WojciechMula/aspell-python";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
|
|
Loading…
Reference in a new issue