2020-03-07 19:53:45 +01:00
|
|
|
{ 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;
|
2020-08-15 15:25:59 +02:00
|
|
|
maintainers = with maintainers; [ oxzi ];
|
2020-03-07 19:53:45 +01:00
|
|
|
};
|
|
|
|
}
|