075e8c2c4f
This is almost all find-and-replace. I manually edited: * pkgs/development/python-modules/notifications-android-tv/default.nix, * pkgs/servers/home-assistant/default.nix, * pkgs/development/tools/continuous-integration/buildbot/master.nix A few files have not been changed in this PR because they would cause rebuilds. This PR should have 0 rebuilds.
35 lines
889 B
Nix
35 lines
889 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
flit-core,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "bottombar";
|
|
version = "2.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "evalf";
|
|
repo = "bottombar";
|
|
tag = "v${version}";
|
|
hash = "sha256-W+Cbcgb664nVT/nsFdDruT688JWG2NZnF5hDDezTgnw=";
|
|
};
|
|
|
|
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 = {
|
|
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 = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ conni2461 ];
|
|
};
|
|
}
|