nixpkgs/pkgs/development/python-modules/daemonocle/default.nix
Emily af2b4c56fd treewide: retire late maintainer AluisioASG
I’ve sadly become aware that Aluísio Augusto Silva Gonçalves
(@AluisioASG), a contributor to Nixpkgs until 2021, tragically
[passed away that year] at the age of only 25 from complications
caused by COVID‐19.

[passed away that year]: https://ufpr.br/ufpr-lamenta-a-morte-do-estudante-aluisio-augusto-silva-goncalves-25-anos/

It doesn’t feel respectful of this loss to have a bot ping his
account every time Iosevka gets an update, or to have people expect
reviews or support for the packages he maintained, so let’s retire
his maintainer list entry.

I’ll adopt ffmpeg-python in my concurrent pull request, but there are
a lot of other packages that could use new maintainers. I encourage
people to consider continuing his work on Nixpkgs if any of them are
of interest.

On the off chance that any of his family or friends ever see this
message, I wish I could say more than that I’m sorry for your loss.
2024-08-04 02:50:54 +01:00

60 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
click,
psutil,
pytestCheckHook,
lsof,
}:
buildPythonPackage rec {
pname = "daemonocle";
version = "1.2.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "jnrbsn";
repo = "daemonocle";
rev = "v${version}";
hash = "sha256-K+IqpEQ4yhfSguPPm2Ult3kGNO/9H56B+kD5ntaCZdk=";
};
propagatedBuildInputs = [
click
psutil
];
nativeCheckInputs = [
pytestCheckHook
lsof
];
# One third of the tests fail on the sandbox with
# "psutil.NoSuchProcess: no process found with pid 0".
disabledTests = [
"sudo"
"test_chrootdir_without_permission"
"test_uid_and_gid_without_permission"
"test_multi_daemon"
"test_multi_daemon_action_worker_id"
"test_exec_worker"
];
pythonImportsCheck = [ "daemonocle" ];
meta = with lib; {
description = "Python library for creating super fancy Unix daemons";
longDescription = ''
daemonocle is a library for creating your own Unix-style daemons
written in Python. It solves many problems that other daemon
libraries have and provides some really useful features you don't
often see in other daemons.
'';
homepage = "https://github.com/jnrbsn/daemonocle";
license = licenses.mit;
maintainers = [ ];
platforms = platforms.unix;
};
}