fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
40 lines
841 B
Nix
40 lines
841 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
wrapt,
|
|
pytestCheckHook,
|
|
sphinxHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "deprecated";
|
|
version = "1.2.14";
|
|
format = "setuptools";
|
|
outputs = [
|
|
"out"
|
|
"doc"
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tantale";
|
|
repo = "deprecated";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-H5Gp2F/ChMeEH4fSYXIB34syDIzDymfN949ksJnS0k4=";
|
|
};
|
|
|
|
nativeBuildInputs = [ sphinxHook ];
|
|
|
|
propagatedBuildInputs = [ wrapt ];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
pythonImportsCheck = [ "deprecated" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/tantale/deprecated";
|
|
description = "Python @deprecated decorator to deprecate old python classes, functions or methods";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ tilpner ];
|
|
};
|
|
}
|