python312Packages.jaconv: don't use nose

This commit is contained in:
Robert Schütz
2024-07-11 20:09:03 +02:00
committed by gador
parent 22f061c5f4
commit dc933890c7
2 changed files with 36 additions and 2 deletions
@@ -2,7 +2,6 @@
lib,
buildPythonPackage,
fetchFromGitHub,
nose,
pythonOlder,
pytestCheckHook,
}:
@@ -21,8 +20,9 @@ buildPythonPackage rec {
hash = "sha256-9ruhOLaYNESeKOwJs3IN6ct66fSq7My9DOyA7/cH3d0=";
};
patches = [ ./use-pytest.patch ];
nativeCheckInputs = [
nose
pytestCheckHook
];
@@ -0,0 +1,34 @@
diff --git a/test_jaconv.py b/test_jaconv.py
index 7e0a169..aaf180d 100644
--- a/test_jaconv.py
+++ b/test_jaconv.py
@@ -1,11 +1,8 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
-from nose.tools import assert_equal, nottest
import jaconv
from functools import partial
-assert_equal.__self__.maxDiff = None
-
HIRAGANA = ('ぁあぃいぅうぇえぉおかがきぎくぐけげこごさざしじすずせぜそぞた',
'だちぢっつづてでとどなにぬねのはばぱひびぴふぶぷへべぺほぼぽま',
'みむめもゃやゅゆょよらりるれろわをんーゎゐゑゕゖゔゝゞ・「」。、')
@@ -25,13 +22,15 @@ FULL_ASCII = ('!"#$%&'()*+,-./:;<=>?
FULL_DIGIT = '0123456789'
-@nottest
+def assert_equal(x, y):
+ assert x == y
+
+
def _compare(mathod, lhs, rhs):
for i in range(len(lhs)):
assert_equal(mathod(lhs[i]), rhs[i])
-@nottest
def _concat(*iterables):
result = ''
for iterable in iterables: