mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +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";
|
name = "grin-1.2.1";
|
||||||
namePrefix = "";
|
namePrefix = "";
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@ pythonPackages.buildPythonApplication rec {
|
||||||
sha256 = "1swzwb17wibam8jszdv98h557hlx44pg6psv6rjz7i33qlxk0fdz";
|
sha256 = "1swzwb17wibam8jszdv98h557hlx44pg6psv6rjz7i33qlxk0fdz";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with pythonPackages; [ nose ];
|
buildInputs = with python2Packages; [ nose ];
|
||||||
propagatedBuildInputs = with pythonPackages; [ argparse ];
|
propagatedBuildInputs = with python2Packages; [ argparse ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = https://pypi.python.org/pypi/grin;
|
homepage = https://pypi.python.org/pypi/grin;
|
||||||
|
|
Loading…
Reference in a new issue