about summary refs log tree commit diff
path: root/pkgs/tools/text/grin/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/text/grin/default.nix')
-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;