11 buildPythonPackage rec {
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
21 rev = "refs/tags/v${version}";
22 hash = "sha256-CvW4SQ78FG8GqBs6/a0yHWfTAn64sH54GVSETooMa6A=";
25 build-system = [ setuptools-scm ];
27 dependencies = [ wrapt ];
29 nativeCheckInputs = [ pytestCheckHook ];
31 pythonImportsCheck = [ "deprecat" ];
34 # https://github.com/mjhajharia/deprecat/issues/13
35 "tests/test_sphinx.py"
39 description = "Decorator to deprecate old python classes, functions or methods";
40 homepage = "https://github.com/mjhajharia/deprecat";
41 changelog = "https://github.com/mjhajharia/deprecat/releases/tag/v${version}";
42 license = licenses.mit;
43 maintainers = with maintainers; [ fab ];