1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "setproctitle";
8 version = "1.1.10";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "6283b7a58477dd8478fbb9e76defb37968ee4ba47b05ec1c053cb39638bd7398";
13 };
14
15 meta = with stdenv.lib; {
16 description = "Allows a process to change its title (as displayed by system tools such as ps and top)";
17 homepage = "https://github.com/dvarrazzo/py-setproctitle";
18 license = licenses.bsdOriginal;
19 maintainers = with maintainers; [ exi ];
20 };
21
22}