Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / setproctitle / default.nix
blob5e4fbecccba697a7e77b05c6982ce5d2ba293c80
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "setproctitle";
10   version = "1.3.2";
12   disabled = pythonOlder "3.6";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-ufuXkHyDDSYPoGWO1Yr9SKhrK4iqxSETXDUv9/00d/0=";
17   };
19   nativeCheckInputs = [ pytestCheckHook ];
21   # tries to compile programs with dependencies that aren't available
22   pytestFlagsArray = [ "--ignore=tests/setproctitle_test.py" ];
24   meta = with lib; {
25     description = "Allows a process to change its title (as displayed by system tools such as ps and top)";
26     homepage =  "https://github.com/dvarrazzo/py-setproctitle";
27     license = licenses.bsdOriginal;
28     maintainers = with maintainers; [ exi ];
29   };