python311Packages.paginate: init at 0.5.6

Divides large result sets into pages for easier browsing
This commit is contained in:
Martin Weinelt
2023-12-20 20:10:23 +01:00
parent ed0b7d3e9c
commit f31e6ef87a
2 changed files with 45 additions and 0 deletions
@@ -0,0 +1,43 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
# 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
];
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 ];
};
}
+2
View File
@@ -8853,6 +8853,8 @@ self: super: with self; {
pagelabels = callPackage ../development/python-modules/pagelabels { };
paginate = callPackage ../development/python-modules/paginate { };
paho-mqtt = callPackage ../development/python-modules/paho-mqtt { };
palace = callPackage ../development/python-modules/palace { };