-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #240337 from helsinki-systems/add/bottombar
python3Packages.bottombar: init at 1.0
- Loading branch information
Showing
4 changed files
with
56 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3282,6 +3282,12 @@ | |
name = "Changsheng Wu"; | ||
githubId = 2083950; | ||
}; | ||
conni2461 = { | ||
email = "[email protected]"; | ||
github = "Conni2461"; | ||
name = "Simon Hauser"; | ||
githubId = 15233006; | ||
}; | ||
connorbaker = { | ||
email = "[email protected]"; | ||
matrix = "@connorbaker:matrix.org"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ lib | ||
, buildPythonPackage | ||
, fetchFromGitHub | ||
, flit-core | ||
}: | ||
|
||
buildPythonPackage rec { | ||
pname = "bottombar"; | ||
version = "1.0"; | ||
format = "pyproject"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "evalf"; | ||
repo = "bottombar"; | ||
rev = "refs/tags/v${version}"; | ||
hash = "sha256-/3m34HcYmmEf92H3938dYV1Q6k44KaCb9TDx9nDNPnM="; | ||
}; | ||
|
||
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 ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters