depot/third_party/nixpkgs/pkgs/development/python-modules/deprecated/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

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 ];
};
}