honcho: use python3
This commit is contained in:
parent
ae202269fa
commit
28647e4ff2
@ -1,15 +1,14 @@
|
|||||||
{ lib, fetchFromGitHub, pythonPackages }:
|
{ lib, fetchFromGitHub, python3Packages }:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (pythonPackages) python;
|
inherit (python3Packages) python;
|
||||||
pname = "honcho";
|
pname = "honcho";
|
||||||
|
|
||||||
in
|
in
|
||||||
|
|
||||||
pythonPackages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
version = "1.0.1";
|
version = "1.0.1";
|
||||||
namePrefix = "";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nickstenning";
|
owner = "nickstenning";
|
||||||
@ -18,7 +17,7 @@ pythonPackages.buildPythonApplication rec {
|
|||||||
sha256 = "11bd87474qpif20xdcn0ra1idj5k16ka51i658wfpxwc6nzsn92b";
|
sha256 = "11bd87474qpif20xdcn0ra1idj5k16ka51i658wfpxwc6nzsn92b";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = with pythonPackages; [ jinja2 pytest mock coverage ];
|
checkInputs = with python3Packages; [ jinja2 pytest mock coverage ];
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
${python.interpreter} setup.py build
|
${python.interpreter} setup.py build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user