Merge pull request #144016 from NixOS/honcho-fix

honcho: 1.0.1 -> 1.1.0, fix the package

authored by

Domen Kožar and committed by
GitHub
f6aad64d 322c20a5

+6 -15
+6 -15
pkgs/tools/system/honcho/default.nix
··· 8 9 python3Packages.buildPythonApplication rec { 10 name = "${pname}-${version}"; 11 - version = "1.0.1"; 12 13 src = fetchFromGitHub { 14 owner = "nickstenning"; 15 repo = "honcho"; 16 rev = "v${version}"; 17 - sha256 = "11bd87474qpif20xdcn0ra1idj5k16ka51i658wfpxwc6nzsn92b"; 18 }; 19 20 checkInputs = with python3Packages; [ jinja2 pytest mock coverage ]; 21 22 - buildPhase = '' 23 - ${python.interpreter} setup.py build 24 - ''; 25 - 26 - installPhase = '' 27 - mkdir -p "$out/${python.sitePackages}" 28 - 29 - export PYTHONPATH="$out/${python.sitePackages}:$PYTHONPATH" 30 - 31 - ${python.interpreter} setup.py install \ 32 - --install-lib=$out/${python.sitePackages} \ 33 - --prefix="$out" 34 - ''; 35 36 checkPhase = '' 37 runHook preCheck
··· 8 9 python3Packages.buildPythonApplication rec { 10 name = "${pname}-${version}"; 11 + version = "1.1.0"; 12 13 src = fetchFromGitHub { 14 owner = "nickstenning"; 15 repo = "honcho"; 16 rev = "v${version}"; 17 + sha256 = "1y0r8dw4pqcq7r4n58ixjdg1iy60lp0gxsd7d2jmhals16ij71rj"; 18 }; 19 + 20 + propagatedBuildInputs = [ python3Packages.setuptools ]; 21 22 checkInputs = with python3Packages; [ jinja2 pytest mock coverage ]; 23 24 + # missing plugins 25 + doCheck = false; 26 27 checkPhase = '' 28 runHook preCheck