depot/third_party/nixpkgs/pkgs/development/python-modules/paginate/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +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 ];
};
}