mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
46 lines
967 B
Nix
46 lines
967 B
Nix
{
|
|
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 = 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 ];
|
|
};
|
|
}
|