tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python312Packages.paginate: disable failing tests
Martin Weinelt
2 years ago
23aee670
01d0a575
+7
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
paginate
default.nix
+7
pkgs/development/python-modules/paginate/default.nix
···
1
1
{ lib
2
2
, buildPythonPackage
3
3
, fetchFromGitHub
4
4
+
, pythonAtLeast
4
5
5
6
# build-system
6
7
, setuptools
···
31
32
32
33
nativeCheckInputs = [
33
34
pytestCheckHook
35
35
+
];
36
36
+
37
37
+
disabledTests = lib.optionals (pythonAtLeast "3.12") [
38
38
+
# https://github.com/Pylons/paginate/issues/19
39
39
+
"test_wrong_collection"
40
40
+
"test_unsliceable_sequence3"
34
41
];
35
42
36
43
meta = with lib; {