10 buildPythonPackage rec {
13 format = "setuptools";
19 src = fetchFromGitHub {
22 rev = "refs/tags/v${version}";
23 hash = "sha256-H5Gp2F/ChMeEH4fSYXIB34syDIzDymfN949ksJnS0k4=";
26 nativeBuildInputs = [ sphinxHook ];
28 propagatedBuildInputs = [ wrapt ];
30 nativeCheckInputs = [ pytestCheckHook ];
32 pythonImportsCheck = [ "deprecated" ];
35 homepage = "https://github.com/tantale/deprecated";
36 description = "Python @deprecated decorator to deprecate old python classes, functions or methods";
37 license = licenses.mit;
38 maintainers = with maintainers; [ tilpner ];