python311Packages.paginate: init at 0.5.6
Divides large result sets into pages for easier browsing
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user