pythonPackages.apprise: install manpage
This commit is contained in:
parent
2f640f6198
commit
b947b8e89a
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi
|
{ lib, buildPythonPackage, fetchPypi, installShellFiles
|
||||||
, Babel, requests, requests_oauthlib, six, click, markdown, pyyaml
|
, Babel, requests, requests_oauthlib, six, click, markdown, pyyaml
|
||||||
, pytestrunner, coverage, flake8, mock, pytestCheckHook, pytestcov, tox, gntp, sleekxmpp
|
, pytestrunner, coverage, flake8, mock, pytestCheckHook, pytestcov, tox, gntp, sleekxmpp
|
||||||
}:
|
}:
|
||||||
|
@ -12,7 +12,7 @@ buildPythonPackage rec {
|
||||||
sha256 = "bab3563bc1e0c64938c4c7700112797bd99f20eb5d4a3e6038338bc8f060e153";
|
sha256 = "bab3563bc1e0c64938c4c7700112797bd99f20eb5d4a3e6038338bc8f060e153";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ Babel ];
|
nativeBuildInputs = [ Babel installShellFiles ];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
requests requests_oauthlib six click markdown pyyaml
|
requests requests_oauthlib six click markdown pyyaml
|
||||||
|
@ -24,6 +24,10 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
disabledTests = [ "test_apprise_cli_nux_env" ];
|
disabledTests = [ "test_apprise_cli_nux_env" ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
installManPage packaging/man/apprise.1
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/caronc/apprise";
|
homepage = "https://github.com/caronc/apprise";
|
||||||
description = "Push Notifications that work with just about every platform!";
|
description = "Push Notifications that work with just about every platform!";
|
||||||
|
|
Loading…
Reference in a new issue