Merge pull request #44889 from Enzime/update/flootty

Remove redundant flootty package and update the correct package

authored by Robert Schütz and committed by GitHub 4af9ee49 f4f93d6d

+6 -26
+6 -10
pkgs/development/tools/flootty/default.nix
··· 1 - { stdenv, python }: 2 - 3 - let 4 - inherit (python.pkgs) buildPythonApplication fetchPypi; 5 - in 6 7 - buildPythonApplication rec { 8 pname = "Flootty"; 9 - version = "3.2.1"; 10 11 - src = fetchPypi { 12 inherit pname version; 13 - sha256 = "0vjwl6g1bwm6jwp9wjla663cm831zf0rc9361mvpn4imdsfz7hxs"; 14 }; 15 16 meta = with stdenv.lib; { 17 description = "A collaborative terminal. In practice, it's similar to a shared screen or tmux session"; 18 homepage = "https://floobits.com/help/flootty"; 19 license = licenses.asl20; 20 - maintainers = with maintainers; [ sellout ]; 21 }; 22 }
··· 1 + { stdenv, python3Packages }: 2 3 + python3Packages.buildPythonApplication rec { 4 pname = "Flootty"; 5 + version = "3.2.2"; 6 7 + src = python3Packages.fetchPypi { 8 inherit pname version; 9 + sha256 = "0gfl143ly81pmmrcml91yr0ypvwrs5q4s1sfdc0l2qkqpy233ih7"; 10 }; 11 12 meta = with stdenv.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 enzime ]; 17 }; 18 }
-16
pkgs/top-level/python-packages.nix
··· 2450 2451 flit = callPackage ../development/python-modules/flit { }; 2452 2453 - Flootty = buildPythonPackage rec { 2454 - name = "Flootty-3.2.0"; 2455 - 2456 - src = pkgs.fetchurl { 2457 - url = "mirror://pypi/F/Flootty/${name}.tar.gz"; 2458 - sha256 = "14n2q2k388xbmp5rda5ss879bg5cbibk4zzz7c8mrjsmxhgagmmg"; 2459 - }; 2460 - 2461 - meta = with pkgs.stdenv.lib; { 2462 - description = "Floobits collaborative terminal"; 2463 - homepage = "https://github.com/Floobits/flootty/"; 2464 - maintainers = with maintainers; [ garbas ]; 2465 - license = licenses.asl20; 2466 - }; 2467 - }; 2468 - 2469 flowlogs_reader = buildPythonPackage rec { 2470 name = "flowlogs_reader-1.0.0"; 2471
··· 2450 2451 flit = callPackage ../development/python-modules/flit { }; 2452 2453 flowlogs_reader = buildPythonPackage rec { 2454 name = "flowlogs_reader-1.0.0"; 2455