mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
grin: use python2
This commit is contained in:
parent
b28db671bb
commit
f7b983aeaf
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue