about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/paginate/default.nix
blob: ad22a818aee32b797b10e413441d4ee6b1ae129d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonAtLeast

# build-system
, setuptools

# tests
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "paginate";
  version = "0.5.6";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Pylons";
    repo = "paginate";
    rev = version;
    hash = "sha256-HZWwOYOCk4mAmz8OnM9hhlf8HA+jC75dYVeo0l4a09o=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  pythonImportsCheck = [
    "paginate"
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  disabledTests = lib.optionals (pythonAtLeast "3.12") [
    # https://github.com/Pylons/paginate/issues/19
    "test_wrong_collection"
    "test_unsliceable_sequence3"
  ];

  meta = with lib; {
    description = "Python pagination module";
    homepage = "https://github.com/Pylons/paginate";
    changelog = "https://github.com/Pylons/paginate/blob/${src.rev}/CHANGELOG.txt";
    license = licenses.mit;
    maintainers = with maintainers; [ hexa ];
  };
}