nixpkgs/pkgs/tools/system/honcho/default.nix

50 lines
1.2 KiB
Nix
Raw Normal View History

2021-03-26 08:17:01 +00:00
{ lib, fetchFromGitHub, python3Packages }:
2017-07-26 03:21:27 +00:00
let
2021-03-26 08:17:01 +00:00
inherit (python3Packages) python;
2017-07-26 03:21:27 +00:00
pname = "honcho";
in
2021-03-26 08:17:01 +00:00
python3Packages.buildPythonApplication rec {
2017-07-26 03:21:27 +00:00
name = "${pname}-${version}";
version = "1.0.1";
2016-09-06 18:58:42 +00:00
src = fetchFromGitHub {
owner = "nickstenning";
repo = "honcho";
rev = "v${version}";
2017-07-26 03:21:27 +00:00
sha256 = "11bd87474qpif20xdcn0ra1idj5k16ka51i658wfpxwc6nzsn92b";
};
2021-03-26 08:17:01 +00:00
checkInputs = with python3Packages; [ jinja2 pytest mock coverage ];
2017-07-26 03:21:27 +00:00
buildPhase = ''
${python.interpreter} setup.py build
'';
installPhase = ''
2019-01-05 14:22:36 +00:00
mkdir -p "$out/${python.sitePackages}"
2017-07-26 03:21:27 +00:00
2019-01-05 14:22:36 +00:00
export PYTHONPATH="$out/${python.sitePackages}:$PYTHONPATH"
2017-07-26 03:21:27 +00:00
2019-01-05 14:22:36 +00:00
${python.interpreter} setup.py install \
--install-lib=$out/${python.sitePackages} \
2017-07-26 03:21:27 +00:00
--prefix="$out"
'';
checkPhase = ''
runHook preCheck
2017-07-26 03:21:27 +00:00
PATH=$out/bin:$PATH coverage run -m pytest
runHook postCheck
'';
meta = with lib; {
2015-04-28 08:54:58 +00:00
description = "A Python clone of Foreman, a tool for managing Procfile-based applications";
license = licenses.mit;
homepage = "https://github.com/nickstenning/honcho";
maintainers = with maintainers; [ benley ];
platforms = platforms.unix;
};
2017-07-26 03:21:27 +00:00
}