Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / misc / cbeams / default.nix
blob928b03df09f7dddeffa2109ff2f82926fdacd9df
1 { lib, buildPythonApplication, fetchPypi, isPy3k, blessings, docopt }:
3 buildPythonApplication rec {
4   pname = "cbeams";
5   version = "1.0.3";
6   disabled = !isPy3k;
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "1agcjg6kmcyvk834xd2j60mi349qi9iw3dc2vwpd7pqwq1daq3gi";
11   };
13   propagatedBuildInputs = [ blessings docopt ];
15   meta = with lib; {
16     homepage = "https://github.com/tartley/cbeams";
17     description = "Command-line program to draw animated colored circles in the terminal";
18     license = licenses.bsd3;
19     maintainers = with maintainers; [ oxzi ];
20   };