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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
955 B
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
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.1.0";
2016-09-06 18:58:42 +00:00
src = fetchFromGitHub {
owner = "nickstenning";
repo = "honcho";
rev = "v${version}";
sha256 = "1y0r8dw4pqcq7r4n58ixjdg1iy60lp0gxsd7d2jmhals16ij71rj";
};
propagatedBuildInputs = [ python3Packages.setuptools ];
2017-07-26 03:21:27 +00:00
nativeCheckInputs = with python3Packages; [ jinja2 pytest mock coverage ];
2017-07-26 03:21:27 +00:00
# missing plugins
doCheck = false;
2017-07-26 03:21:27 +00:00
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;
2023-11-27 01:17:53 +00:00
mainProgram = "honcho";
};
2017-07-26 03:21:27 +00:00
}