biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / flootty / default.nix
blob9440b0b6194622b321ea9224521b71d0e3c80fef
1 { lib, python3Packages, fetchPypi }:
3 python3Packages.buildPythonApplication rec {
4   pname = "Flootty";
5   version = "3.2.2";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "0gfl143ly81pmmrcml91yr0ypvwrs5q4s1sfdc0l2qkqpy233ih7";
10   };
12   meta = with lib; {
13     description = "A collaborative terminal. In practice, it's similar to a shared screen or tmux session";
14     mainProgram = "flootty";
15     homepage = "https://floobits.com/help/flootty";
16     license = licenses.asl20;
17     maintainers = with maintainers; [ sellout ];
18   };