2018-10-29 17:29:09 +00:00
|
|
|
{ stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-05-08 19:31:37 +00:00
|
|
|
pname = "setproctitle";
|
2020-11-29 14:04:42 +00:00
|
|
|
version = "1.2";
|
2018-10-29 17:29:09 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-11-29 14:04:42 +00:00
|
|
|
sha256 = "9b4e48722dd96cbd66d5bf2eab930fff8546cd551dd8d774c8a319448bd381a6";
|
2018-10-29 17:29:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Allows a process to change its title (as displayed by system tools such as ps and top)";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/dvarrazzo/py-setproctitle";
|
2018-10-29 17:29:09 +00:00
|
|
|
license = licenses.bsdOriginal;
|
|
|
|
maintainers = with maintainers; [ exi ];
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|