python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / flootty / default.nix
blobe4f76ca9f6af505b7b99762b50b312ab263021a8
1 { lib, python3Packages }:
3 python3Packages.buildPythonApplication rec {
4   pname = "Flootty";
5   version = "3.2.2";
7   src = python3Packages.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     homepage = "https://floobits.com/help/flootty";
15     license = licenses.asl20;
16     maintainers = with maintainers; [ sellout ];
17   };