Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / bottombar / default.nix
blobab7a9b06d64f4f19704c96b94c8cae373b26ce07
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , flit-core
5 }:
7 buildPythonPackage rec {
8   pname = "bottombar";
9   version = "2.1";
10   format = "pyproject";
12   src = fetchFromGitHub {
13     owner = "evalf";
14     repo = "bottombar";
15     rev = "refs/tags/v${version}";
16     hash = "sha256-W+Cbcgb664nVT/nsFdDruT688JWG2NZnF5hDDezTgnw=";
17   };
19   nativeBuildInputs = [
20     flit-core
21   ];
23   # The package only has some "interactive" tests where a user must check for
24   # the correct output and hit enter after every check
25   doCheck = false;
26   pythonImportsCheck = [
27     "bottombar"
28   ];
30   meta = with lib; {
31     description = "Context manager that prints a status line at the bottom of a terminal window";
32     homepage = "https://github.com/evalf/bottombar";
33     changelog = "https://github.com/evalf/bottombar/releases/tag/v${version}";
34     license = licenses.mit;
35     maintainers = with maintainers; [ conni2461 ];
36   };