about summary refs log tree commit diff
path: root/pkgs/development/python-modules/setproctitle/default.nix
blob: 3aea75e3de82771bfa4d88bb1738da274597eec4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "python-setproctitle";
  version = "1.1.9";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1mqadassxcm0m9r1l02m5vr4bbandn48xz8gifvxmb4wiz8i8d0w";
  };

  meta = with stdenv.lib; {
    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;
    license = licenses.bsdOriginal;
    maintainers = with maintainers; [ exi ];
  };

}