Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 22 lines 535 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "python-setproctitle"; 8 version = "1.1.9"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "1mqadassxcm0m9r1l02m5vr4bbandn48xz8gifvxmb4wiz8i8d0w"; 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}