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

51 lines
1.2 KiB
Nix
Raw Normal View History

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