summary refs log tree commit diff
path: root/pkgs/misc/cbeams/default.nix
blob: ec045ebf3efdf89e4791f348ede6d9f1f443c2e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildPythonApplication, fetchPypi, isPy3k, blessings, docopt }:

buildPythonApplication rec {
  pname = "cbeams";
  version = "1.0.3";
  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "1agcjg6kmcyvk834xd2j60mi349qi9iw3dc2vwpd7pqwq1daq3gi";
  };

  propagatedBuildInputs = [ blessings docopt ];

  meta = with lib; {
    homepage = "https://github.com/tartley/cbeams";
    description = "Command-line program to draw animated colored circles in the terminal";
    license = licenses.bsd3;
    maintainers = with maintainers; [ geistesk ];
  };
}