blob: e73845f673565ebbb8dc5e4de247c7ca53649f0e (
plain)
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonAtLeast,
# build-system
setuptools,
# tests
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "paginate";
version = "0.5.7";
pyproject = true;
src = fetchFromGitHub {
owner = "Pylons";
repo = "paginate";
rev = version;
hash = "sha256-+zX9uGNWcV4BWbD2lcd1u9zZ4m7CnbsYZnc99HNaF8I=";
};
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 = {
description = "Python pagination module";
homepage = "https://github.com/Pylons/paginate";
changelog = "https://github.com/Pylons/paginate/blob/${src.rev}/CHANGELOG.txt";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ hexa ];
};
}
|