1{ stdenv, python }:
2
3let
4 inherit (python.pkgs) buildPythonApplication fetchPypi;
5in
6
7buildPythonApplication rec {
8 pname = "Flootty";
9 version = "3.2.1";
10 name = "${pname}-${version}";
11
12 src = fetchPypi {
13 inherit pname version;
14 sha256 = "0vjwl6g1bwm6jwp9wjla663cm831zf0rc9361mvpn4imdsfz7hxs";
15 };
16
17 meta = with stdenv.lib; {
18 description = "A collaborative terminal. In practice, it's similar to a shared screen or tmux session";
19 homepage = "https://floobits.com/help/flootty";
20 license = licenses.asl20;
21 maintainers = with maintainers; [ sellout ];
22 };
23}