summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Hoang <enzime@users.noreply.github.com>2018-08-11 15:23:36 +1000
committerMichael Hoang <enzime@users.noreply.github.com>2018-08-12 12:46:05 +1000
commit78961b663c55a07286abfbf63b5de0d8bda4121f (patch)
tree695056dcdaaf079fdf6d4400ed8938716031230d
parent83a15925a4673e7b0027ebc6ac7e559c419b085c (diff)
downloadnixpkgs-78961b663c55a07286abfbf63b5de0d8bda4121f.tar
nixpkgs-78961b663c55a07286abfbf63b5de0d8bda4121f.tar.gz
nixpkgs-78961b663c55a07286abfbf63b5de0d8bda4121f.tar.bz2
nixpkgs-78961b663c55a07286abfbf63b5de0d8bda4121f.tar.lz
nixpkgs-78961b663c55a07286abfbf63b5de0d8bda4121f.tar.xz
nixpkgs-78961b663c55a07286abfbf63b5de0d8bda4121f.tar.zst
nixpkgs-78961b663c55a07286abfbf63b5de0d8bda4121f.zip
flootty: 3.2.1 -> 3.2.2
-rw-r--r--pkgs/development/tools/flootty/default.nix16
1 files changed, 6 insertions, 10 deletions
diff --git a/pkgs/development/tools/flootty/default.nix b/pkgs/development/tools/flootty/default.nix
index 796c3dc79a0..1baddb52259 100644
--- a/pkgs/development/tools/flootty/default.nix
+++ b/pkgs/development/tools/flootty/default.nix
@@ -1,22 +1,18 @@
-{ stdenv, python }:
+{ stdenv, python3Packages }:
 
-let
-  inherit (python.pkgs) buildPythonApplication fetchPypi;
-in
-
-buildPythonApplication rec {
+python3Packages.buildPythonApplication rec {
   pname = "Flootty";
-  version = "3.2.1";
+  version = "3.2.2";
 
-  src = fetchPypi {
+  src = python3Packages.fetchPypi {
     inherit pname version;
-    sha256 = "0vjwl6g1bwm6jwp9wjla663cm831zf0rc9361mvpn4imdsfz7hxs";
+    sha256 = "0gfl143ly81pmmrcml91yr0ypvwrs5q4s1sfdc0l2qkqpy233ih7";
   };
 
   meta = with stdenv.lib; {
     description = "A collaborative terminal. In practice, it's similar to a shared screen or tmux session";
     homepage = "https://floobits.com/help/flootty";
     license = licenses.asl20;
-    maintainers = with maintainers; [ sellout ];
+    maintainers = with maintainers; [ sellout enzime ];
   };
 }