about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/autopage/default.nix
blob: 0973220438ae87d9c98696f97b6877019ecd3801 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, buildPythonPackage, fetchPypi, setuptools }:

buildPythonPackage rec {
  pname = "autopage";
  version = "0.5.1";

  format = "pyproject";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-Ab4+5hu3FOkJD8xcEPTPVGw5YzHGIMauUKIyGyjtMZk=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  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;
  };
}