2021-09-18 10:52:07 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "autopage";
|
2022-02-20 05:27:41 +00:00
|
|
|
version = "0.5.0";
|
2021-09-18 10:52:07 +00:00
|
|
|
|
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-02-20 05:27:41 +00:00
|
|
|
sha256 = "sha256-UwW0PMB5gXDXEk5aL+7Plp5F9KC691yzUROBFOr3a4M=";
|
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;
|
|
|
|
};
|
|
|
|
}
|