nixpkgs/pkgs/by-name/al/alot/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

103 lines
2.1 KiB
Nix

{ lib
, python311
, fetchFromGitHub
, file
, gnupg
, gawk
, procps
, notmuch
, withManpage ? false
}:
with python311.pkgs; buildPythonApplication rec {
pname = "alot";
version = "0.11";
pyproject = true;
outputs = [
"out"
] ++ lib.optionals withManpage [
"man"
];
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "pazz";
repo = "alot";
rev = "refs/tags/${version}";
sha256 = "sha256-mXaRzl7260uxio/BQ36BCBxgKhl1r0Rc6PwFZA8qNqc=";
};
postPatch = ''
substituteInPlace alot/settings/manager.py \
--replace-fail /usr/share "$out/share"
'';
nativeBuildInputs = [
setuptools-scm
] ++ lib.optional withManpage sphinx;
propagatedBuildInputs = [
configobj
file
gpgme
notmuch2
python-magic
service-identity
twisted
urwid
urwidtrees
];
nativeCheckInputs = [
future
gawk
gnupg
mock
procps
pytestCheckHook
notmuch
];
postBuild = lib.optionalString withManpage [
"make -C docs man"
];
disabledTests = [
# Some twisted tests need internet access
"test_env_set"
"test_no_spawn_no_stdin_attached"
# DatabaseLockedError
"test_save_named_query"
];
postInstall =
let
completionPython = python.withPackages (ps: [ ps.configobj ]);
in
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
substituteInPlace extra/completion/alot-completion.zsh \
--replace-fail "python3" "${completionPython.interpreter}"
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
'';
meta = with lib; {
homepage = "https://github.com/pazz/alot";
description = "Terminal MUA using notmuch mail";
mainProgram = "alot";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ milibopp ];
};
}