mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 15:26:34 +01:00
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
pytestCheckHook,
|
|
procps,
|
|
stdenv,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "setproctitle";
|
|
version = "1.3.7";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dvarrazzo";
|
|
repo = "py-setproctitle";
|
|
tag = "version-${version}";
|
|
hash = "sha256-dfOdtfOXRAoCQLW307+YMsFIWRv4CupbKUxckev1oUw=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
procps
|
|
];
|
|
|
|
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# Setting the process title fails on macOS in the Nix builder environment (regardless of sandboxing)
|
|
"test_setproctitle_darwin"
|
|
# *** multi-threaded process forked ***; crashed on child side of fork pre-exec. fork without exec is unsafe.
|
|
"test_fork_segfault"
|
|
"test_thread_fork_segfault"
|
|
];
|
|
|
|
pythonImportsCheck = [ "setproctitle" ];
|
|
|
|
meta = {
|
|
description = "Allows a process to change its title (as displayed by system tools such as ps and top)";
|
|
homepage = "https://github.com/dvarrazzo/py-setproctitle";
|
|
changelog = "https://github.com/dvarrazzo/py-setproctitle/blob/${src.tag}/HISTORY.rst";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ exi ];
|
|
};
|
|
}
|