diff --git a/pkgs/development/python-modules/lexilang/default.nix b/pkgs/development/python-modules/lexilang/default.nix index a6ec79c39ec4..227fdb0e55b5 100644 --- a/pkgs/development/python-modules/lexilang/default.nix +++ b/pkgs/development/python-modules/lexilang/default.nix @@ -3,7 +3,6 @@ buildPythonPackage, fetchFromGitHub, setuptools, - pytestCheckHook, python, }: @@ -19,9 +18,9 @@ buildPythonPackage rec { hash = "sha256-Yn6zthr6irkDsRx25NG9gOQc07xRpItwCc6+WqAhd/c="; }; - nativeBuildInputs = [ setuptools ]; + build-system = [ setuptools ]; - nativeCheckInputs = [ pytestCheckHook ]; + pythonImportsCheck = [ "lexilang" ]; checkPhase = '' runHook preCheck @@ -29,10 +28,10 @@ buildPythonPackage rec { runHook postCheck ''; - meta = with lib; { + meta = { description = "Simple, fast dictionary-based language detector for short texts"; homepage = "https://github.com/LibreTranslate/LexiLang"; - license = licenses.agpl3Only; - maintainers = with maintainers; [ izorkin ]; + license = lib.licenses.agpl3Only; + maintainers = with lib.maintainers; [ izorkin ]; }; }