Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / zope-deprecation / default.nix
blob4a0437e2b2f4e1d6ac28049639b71811320a6402
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , setuptools
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "zope-deprecation";
11   version = "5.0";
12   pyproject = true;
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     pname = "zope.deprecation";
18     inherit version;
19     hash = "sha256-t8MtM5IDayFFxAsxA+cyLbaGYqsJtyZ6/hUyqdk/ZA8=";
20   };
22   nativeBuildInputs = [
23     setuptools
24   ];
26   nativeCheckInputs = [
27     pytestCheckHook
28   ];
30   pytestFlagsArray = [
31     "src/zope/deprecation/tests.py"
32   ];
34   pythonImportsCheck = [
35     "zope.deprecation"
36   ];
38   meta = with lib; {
39     homepage = "https://github.com/zopefoundation/zope.deprecation";
40     description = "Zope Deprecation Infrastructure";
41     changelog = "https://github.com/zopefoundation/zope.deprecation/blob/${version}/CHANGES.rst";
42     license = licenses.zpl21;
43     maintainers = with maintainers; [ domenkozar ];
44   };