about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-10-17 13:41:18 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2016-10-18 23:14:33 +0200
commitf7b983aeafb07db17ada89a12da954cb160c396d (patch)
tree0d466fc338cd6f4feb65486c50e4eba10a1b9493
parentb28db671bb404ff8c666c06d938650c1d913d378 (diff)
downloadnixlib-f7b983aeafb07db17ada89a12da954cb160c396d.tar
nixlib-f7b983aeafb07db17ada89a12da954cb160c396d.tar.gz
nixlib-f7b983aeafb07db17ada89a12da954cb160c396d.tar.bz2
nixlib-f7b983aeafb07db17ada89a12da954cb160c396d.tar.lz
nixlib-f7b983aeafb07db17ada89a12da954cb160c396d.tar.xz
nixlib-f7b983aeafb07db17ada89a12da954cb160c396d.tar.zst
nixlib-f7b983aeafb07db17ada89a12da954cb160c396d.zip
grin: use python2
-rw-r--r--pkgs/tools/text/grin/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/text/grin/default.nix b/pkgs/tools/text/grin/default.nix
index 149af7baa2d7..7c1df7f8819c 100644
--- a/pkgs/tools/text/grin/default.nix
+++ b/pkgs/tools/text/grin/default.nix
@@ -1,6 +1,6 @@
-{ stdenv, fetchurl, pythonPackages }:
+{ stdenv, fetchurl, python2Packages }:
 
-pythonPackages.buildPythonApplication rec {
+python2Packages.buildPythonApplication rec {
   name = "grin-1.2.1";
   namePrefix = "";
 
@@ -9,8 +9,8 @@ pythonPackages.buildPythonApplication rec {
     sha256 = "1swzwb17wibam8jszdv98h557hlx44pg6psv6rjz7i33qlxk0fdz";
   };
 
-  buildInputs = with pythonPackages; [ nose ];
-  propagatedBuildInputs = with pythonPackages; [ argparse ];
+  buildInputs = with python2Packages; [ nose ];
+  propagatedBuildInputs = with python2Packages; [ argparse ];
 
   meta = {
     homepage = https://pypi.python.org/pypi/grin;