depot/third_party/nixpkgs/pkgs/development/python-modules/paginate/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

45 lines
967 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 ];
};
}