sqlite_orm: 1.9 -> 1.9.1 (#379250)
[NixPkgs.git] / pkgs / by-name / fl / flootty / package.nix
blob085de1832164828f5359a147d7953a50e2d1e4e3
2   lib,
3   python3Packages,
4   fetchPypi,
5 }:
7 python3Packages.buildPythonApplication rec {
8   pname = "Flootty";
9   version = "3.2.2";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0gfl143ly81pmmrcml91yr0ypvwrs5q4s1sfdc0l2qkqpy233ih7";
14   };
16   meta = with lib; {
17     description = "Collaborative terminal. In practice, it's similar to a shared screen or tmux session";
18     mainProgram = "flootty";
19     homepage = "https://floobits.com/help/flootty";
20     license = licenses.asl20;
21     maintainers = with maintainers; [ sellout ];
22   };