nixpkgs/pkgs/development/python-modules/bottombar/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
905 B
Nix
Raw Normal View History

2023-06-28 13:22:24 +00:00
{
lib,
buildPythonPackage,
fetchFromGitHub,
flit-core,
}:
buildPythonPackage rec {
pname = "bottombar";
2023-09-15 12:05:52 +00:00
version = "2.1";
2023-06-28 13:22:24 +00:00
format = "pyproject";
src = fetchFromGitHub {
owner = "evalf";
repo = "bottombar";
rev = "refs/tags/v${version}";
2023-09-15 12:05:52 +00:00
hash = "sha256-W+Cbcgb664nVT/nsFdDruT688JWG2NZnF5hDDezTgnw=";
2023-06-28 13:22:24 +00:00
};
nativeBuildInputs = [ flit-core ];
# The package only has some "interactive" tests where a user must check for
# the correct output and hit enter after every check
doCheck = false;
pythonImportsCheck = [ "bottombar" ];
meta = with lib; {
description = "Context manager that prints a status line at the bottom of a terminal window";
homepage = "https://github.com/evalf/bottombar";
changelog = "https://github.com/evalf/bottombar/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ conni2461 ];
};
}