nixpkgs-suyu/pkgs/development/python-modules/paginate/default.nix
2023-12-20 20:11:12 +01:00

50 lines
973 B
Nix

{ 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 ];
};
}