biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / deprecated / default.nix
blobe32aab6be8a2789fc30721e995f806adba1d935b
2   lib,
3   fetchFromGitHub,
4   buildPythonPackage,
5   wrapt,
6   pytestCheckHook,
7   sphinxHook,
8 }:
10 buildPythonPackage rec {
11   pname = "deprecated";
12   version = "1.2.14";
13   format = "setuptools";
14   outputs = [
15     "out"
16     "doc"
17   ];
19   src = fetchFromGitHub {
20     owner = "tantale";
21     repo = "deprecated";
22     rev = "refs/tags/v${version}";
23     hash = "sha256-H5Gp2F/ChMeEH4fSYXIB34syDIzDymfN949ksJnS0k4=";
24   };
26   nativeBuildInputs = [ sphinxHook ];
28   propagatedBuildInputs = [ wrapt ];
30   nativeCheckInputs = [ pytestCheckHook ];
32   pythonImportsCheck = [ "deprecated" ];
34   meta = with lib; {
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 ];
39   };