Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / autopage / default.nix
blobc8fbd6b9473dfcce2366d8f8051e018d7242279d
1 { lib, buildPythonPackage, fetchPypi, setuptools }:
3 buildPythonPackage rec {
4   pname = "autopage";
5   version = "0.5.2";
7   format = "pyproject";
9   src = fetchPypi {
10     inherit pname version;
11     hash = "sha256-gmmW10xaqfS2kWGVVHMSrGOEusOBC4UXBj8pMkgle3I=";
12   };
14   nativeBuildInputs = [
15     setuptools
16   ];
18   pythonImportsCheck = [ "autopage" ];
20   meta = with lib; {
21     description = "A library to provide automatic paging for console output";
22     homepage = "https://github.com/zaneb/autopage";
23     license = licenses.asl20;
24     maintainers = teams.openstack.members;
25   };