mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
Merge pull request #156619 from fabaff/fix-alot
alot: disable failing test
This commit is contained in:
commit
745071d2a2
@ -1,16 +1,29 @@
|
|||||||
{ lib, python3, fetchFromGitHub, file, gnupg, gawk, notmuch, procps, withManpage ? false
|
{ lib
|
||||||
|
, python3
|
||||||
|
, fetchFromGitHub
|
||||||
|
, file
|
||||||
|
, gnupg
|
||||||
|
, gawk
|
||||||
|
, notmuch
|
||||||
|
, procps
|
||||||
|
, withManpage ? false
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with python3.pkgs;
|
with python3.pkgs;
|
||||||
|
|
||||||
let
|
let
|
||||||
notmuch2 = callPackage ./notmuch.nix {
|
notmuch2 = callPackage ./notmuch.nix {
|
||||||
inherit notmuch;
|
inherit notmuch;
|
||||||
};
|
};
|
||||||
in buildPythonApplication rec {
|
in
|
||||||
|
buildPythonApplication rec {
|
||||||
pname = "alot";
|
pname = "alot";
|
||||||
version = "0.10";
|
version = "0.10";
|
||||||
outputs = [ "out" ] ++ lib.optional withManpage "man";
|
|
||||||
|
outputs = [
|
||||||
|
"out"
|
||||||
|
] ++ lib.optional withManpage [
|
||||||
|
"man"
|
||||||
|
];
|
||||||
|
|
||||||
disabled = !isPy3k;
|
disabled = !isPy3k;
|
||||||
|
|
||||||
@ -22,48 +35,63 @@ in buildPythonApplication rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace alot/settings/manager.py --replace /usr/share "$out/share"
|
substituteInPlace alot/settings/manager.py \
|
||||||
|
--replace /usr/share "$out/share"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = lib.optional withManpage sphinx;
|
nativeBuildInputs = lib.optional withManpage sphinx;
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
notmuch2
|
|
||||||
urwid
|
|
||||||
urwidtrees
|
|
||||||
twisted
|
|
||||||
python_magic
|
|
||||||
configobj
|
configobj
|
||||||
service-identity
|
|
||||||
file
|
file
|
||||||
gpgme
|
gpgme
|
||||||
|
notmuch2
|
||||||
|
python_magic
|
||||||
|
service-identity
|
||||||
|
twisted
|
||||||
|
urwid
|
||||||
|
urwidtrees
|
||||||
];
|
];
|
||||||
|
|
||||||
postBuild = lib.optionalString withManpage "make -C docs man";
|
checkInputs = [
|
||||||
|
future
|
||||||
|
gawk
|
||||||
|
gnupg
|
||||||
|
mock
|
||||||
|
procps
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
postBuild = lib.optionalString withManpage [
|
||||||
|
"make -C docs man"
|
||||||
|
];
|
||||||
|
|
||||||
checkInputs = [ gawk future mock gnupg procps pytestCheckHook ];
|
|
||||||
# some twisted tests need internet access
|
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
|
# Some twisted tests need internet access
|
||||||
"test_env_set"
|
"test_env_set"
|
||||||
"test_no_spawn_no_stdin_attached"
|
"test_no_spawn_no_stdin_attached"
|
||||||
|
# DatabaseLockedError
|
||||||
|
"test_save_named_query"
|
||||||
];
|
];
|
||||||
|
|
||||||
postInstall = let
|
postInstall =
|
||||||
completionPython = python.withPackages (ps: [ ps.configobj ]);
|
let
|
||||||
in lib.optionalString withManpage ''
|
completionPython = python.withPackages (ps: [ ps.configobj ]);
|
||||||
mkdir -p $out/man
|
in
|
||||||
cp -r docs/build/man $out/man
|
lib.optionalString withManpage ''
|
||||||
''
|
mkdir -p $out/man
|
||||||
+ ''
|
cp -r docs/build/man $out/man
|
||||||
mkdir -p $out/share/{applications,alot}
|
''
|
||||||
cp -r extra/themes $out/share/alot
|
+ ''
|
||||||
|
mkdir -p $out/share/{applications,alot}
|
||||||
|
cp -r extra/themes $out/share/alot
|
||||||
|
|
||||||
substituteInPlace extra/completion/alot-completion.zsh \
|
substituteInPlace extra/completion/alot-completion.zsh \
|
||||||
--replace "python3" "${completionPython.interpreter}"
|
--replace "python3" "${completionPython.interpreter}"
|
||||||
install -D extra/completion/alot-completion.zsh $out/share/zsh/site-functions/_alot
|
install -D extra/completion/alot-completion.zsh $out/share/zsh/site-functions/_alot
|
||||||
|
|
||||||
sed "s,/usr/bin,$out/bin,g" extra/alot.desktop > $out/share/applications/alot.desktop
|
sed "s,/usr/bin,$out/bin,g" extra/alot.desktop > $out/share/applications/alot.desktop
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/pazz/alot";
|
homepage = "https://github.com/pazz/alot";
|
||||||
|
Loading…
Reference in New Issue
Block a user