honcho: use python3

+4 -5
+4 -5
pkgs/tools/system/honcho/default.nix
··· 1 - { lib, fetchFromGitHub, pythonPackages }: 1 + { lib, fetchFromGitHub, python3Packages }: 2 2 3 3 let 4 - inherit (pythonPackages) python; 4 + inherit (python3Packages) python; 5 5 pname = "honcho"; 6 6 7 7 in 8 8 9 - pythonPackages.buildPythonApplication rec { 9 + python3Packages.buildPythonApplication rec { 10 10 name = "${pname}-${version}"; 11 11 version = "1.0.1"; 12 - namePrefix = ""; 13 12 14 13 src = fetchFromGitHub { 15 14 owner = "nickstenning"; ··· 18 17 sha256 = "11bd87474qpif20xdcn0ra1idj5k16ka51i658wfpxwc6nzsn92b"; 19 18 }; 20 19 21 - checkInputs = with pythonPackages; [ jinja2 pytest mock coverage ]; 20 + checkInputs = with python3Packages; [ jinja2 pytest mock coverage ]; 22 21 23 22 buildPhase = '' 24 23 ${python.interpreter} setup.py build