From bcfd18344fe26f5e50f3503b2682ec091da6036b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 10 Sep 2021 14:16:24 +0200 Subject: [PATCH] python3Packages.deprecated: switch to pytestCheckHook --- .../python-modules/deprecated/default.nix | 20 +++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/deprecated/default.nix b/pkgs/development/python-modules/deprecated/default.nix index f54d6f8cd13f..40c20a40c20c 100644 --- a/pkgs/development/python-modules/deprecated/default.nix +++ b/pkgs/development/python-modules/deprecated/default.nix @@ -2,24 +2,32 @@ , fetchPypi , buildPythonPackage , wrapt -, pytest +, pytestCheckHook }: buildPythonPackage rec { - pname = "Deprecated"; + pname = "deprecated"; version = "1.2.13"; src = fetchPypi { - inherit pname version; + pname = "Deprecated"; + inherit version; sha256 = "sha256-Q6xTNdqQwxwkugKK9TapHUHVP55pAd2wIbzFcs5E440="; }; - propagatedBuildInputs = [ wrapt ]; - checkInputs = [ pytest ]; + propagatedBuildInputs = [ + wrapt + ]; + + checkInputs = [ + pytestCheckHook + ]; + + pythonImportsCheck = [ "deprecated" ]; + meta = with lib; { homepage = "https://github.com/tantale/deprecated"; description = "Python @deprecated decorator to deprecate old python classes, functions or methods"; - platforms = platforms.all; license = licenses.mit; maintainers = with maintainers; [ tilpner ]; };