mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 06:03:40 +00:00
0215034f25
when they already rely on SRI hashes.
27 lines
582 B
Nix
27 lines
582 B
Nix
{ 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;
|
|
};
|
|
}
|