10 buildPythonPackage rec {
11 pname = "setproctitle";
15 disabled = pythonOlder "3.6";
18 inherit pname version;
19 hash = "sha256-yRPhUefqAVZ4N/8DeiPKh0AZKIAZi3+7kLFtGBYHyq4=";
22 nativeBuildInputs = [ setuptools ];
24 nativeCheckInputs = [ pytestCheckHook ];
26 # tries to compile programs with dependencies that aren't available
27 disabledTestPaths = [ "tests/setproctitle_test.py" ];
30 description = "Allows a process to change its title (as displayed by system tools such as ps and top)";
31 homepage = "https://github.com/dvarrazzo/py-setproctitle";
32 license = licenses.bsdOriginal;
33 maintainers = with maintainers; [ exi ];