2022-09-30 11:47:45 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, setuptools }:
|
2021-09-18 10:52:07 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "autopage";
|
2022-06-16 17:23:12 +00:00
|
|
|
version = "0.5.1";
|
2021-09-18 10:52:07 +00:00
|
|
|
|
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-06-16 17:23:12 +00:00
|
|
|
sha256 = "sha256-Ab4+5hu3FOkJD8xcEPTPVGw5YzHGIMauUKIyGyjtMZk=";
|
2021-09-18 10:52:07 +00:00
|
|
|
};
|
|
|
|
|
2022-09-30 11:47:45 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
];
|
|
|
|
|
2021-09-18 10:52:07 +00:00
|
|
|
pythonImportsCheck = [ "autopage" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A library to provide automatic paging for console output";
|
|
|
|
homepage = "https://github.com/zaneb/autopage";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = teams.openstack.members;
|
|
|
|
};
|
|
|
|
}
|