cbeams: init at 1.0.3
This commit is contained in:
parent
c5e223e120
commit
2e9cfaf3cf
21
pkgs/misc/cbeams/default.nix
Normal file
21
pkgs/misc/cbeams/default.nix
Normal file
|
@ -0,0 +1,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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -532,6 +532,8 @@ in {
|
||||||
|
|
||||||
catalogue = callPackage ../development/python-modules/catalogue { };
|
catalogue = callPackage ../development/python-modules/catalogue { };
|
||||||
|
|
||||||
|
cbeams = callPackage ../misc/cbeams { };
|
||||||
|
|
||||||
cdecimal = callPackage ../development/python-modules/cdecimal { };
|
cdecimal = callPackage ../development/python-modules/cdecimal { };
|
||||||
|
|
||||||
cfn-flip = callPackage ../development/python-modules/cfn-flip { };
|
cfn-flip = callPackage ../development/python-modules/cfn-flip { };
|
||||||
|
|
Loading…
Reference in New Issue
Block a user