8 buildPythonPackage rec {
9 pname = "setproctitle";
12 disabled = pythonOlder "3.6";
15 inherit pname version;
16 hash = "sha256-ufuXkHyDDSYPoGWO1Yr9SKhrK4iqxSETXDUv9/00d/0=";
19 nativeCheckInputs = [ pytestCheckHook ];
21 # tries to compile programs with dependencies that aren't available
22 pytestFlagsArray = [ "--ignore=tests/setproctitle_test.py" ];
25 description = "Allows a process to change its title (as displayed by system tools such as ps and top)";
26 homepage = "https://github.com/dvarrazzo/py-setproctitle";
27 license = licenses.bsdOriginal;
28 maintainers = with maintainers; [ exi ];