ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / deprecated / default.nix
blob40c20a40c20c7dda0773ef4c88a1f4a24ab4362b
1 { lib
2 , fetchPypi
3 , buildPythonPackage
4 , wrapt
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "deprecated";
10   version = "1.2.13";
12   src = fetchPypi {
13     pname = "Deprecated";
14     inherit version;
15     sha256 = "sha256-Q6xTNdqQwxwkugKK9TapHUHVP55pAd2wIbzFcs5E440=";
16   };
18   propagatedBuildInputs = [
19     wrapt
20   ];
22   checkInputs = [
23     pytestCheckHook
24   ];
26   pythonImportsCheck = [ "deprecated" ];
28   meta = with lib; {
29     homepage = "https://github.com/tantale/deprecated";
30     description = "Python @deprecated decorator to deprecate old python classes, functions or methods";
31     license = licenses.mit;
32     maintainers = with maintainers; [ tilpner ];
33   };