blob: 96b42737a957c8311fcaee6565eec7e87c983ed0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
pythonAtLeast,
setuptools,
wrapt,
pytestCheckHook,
sphinxHook,
}:
buildPythonPackage rec {
pname = "deprecated";
version = "1.2.18";
pyproject = true;
outputs = [
"out"
"doc"
];
src = fetchFromGitHub {
owner = "tantale";
repo = "deprecated";
tag = "v${version}";
hash = "sha256-gx5D1KAPELKfb2U93lvuztv3Ea3V+PshcfshIS6uwCo=";
};
build-system = [ setuptools ];
nativeBuildInputs = [ sphinxHook ];
propagatedBuildInputs = [ wrapt ];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = lib.optionals (pythonAtLeast "3.13") [
# assertion text mismatch
"test_classic_deprecated_class_method__warns"
"test_sphinx_deprecated_class_method__warns"
];
pythonImportsCheck = [ "deprecated" ];
meta = {
homepage = "https://github.com/tantale/deprecated";
description = "Python @deprecated decorator to deprecate old python classes, functions or methods";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tilpner ];
};
}
|