Merge pull request #144016 from NixOS/honcho-fix

honcho: 1.0.1 -> 1.1.0, fix the package

Changed files
+6 -15
pkgs
tools
system
honcho
+6 -15
pkgs/tools/system/honcho/default.nix
···
python3Packages.buildPythonApplication rec {
name = "${pname}-${version}";
-
version = "1.0.1";
+
version = "1.1.0";
src = fetchFromGitHub {
owner = "nickstenning";
repo = "honcho";
rev = "v${version}";
-
sha256 = "11bd87474qpif20xdcn0ra1idj5k16ka51i658wfpxwc6nzsn92b";
+
sha256 = "1y0r8dw4pqcq7r4n58ixjdg1iy60lp0gxsd7d2jmhals16ij71rj";
};
+
+
propagatedBuildInputs = [ python3Packages.setuptools ];
checkInputs = with python3Packages; [ jinja2 pytest mock coverage ];
-
buildPhase = ''
-
${python.interpreter} setup.py build
-
'';
-
-
installPhase = ''
-
mkdir -p "$out/${python.sitePackages}"
-
-
export PYTHONPATH="$out/${python.sitePackages}:$PYTHONPATH"
-
-
${python.interpreter} setup.py install \
-
--install-lib=$out/${python.sitePackages} \
-
--prefix="$out"
-
'';
+
# missing plugins
+
doCheck = false;
checkPhase = ''
runHook preCheck