zizmor: 1.0.0 -> 1.0.1 (#371951)
[NixPkgs.git] / pkgs / development / python-modules / setproctitle / default.nix
blobe07667cdd05c1ab6eec522908498501df0270eeb
2   lib,
3   buildPythonPackage,
4   pythonOlder,
5   fetchPypi,
6   setuptools,
7   pytestCheckHook,
8 }:
10 buildPythonPackage rec {
11   pname = "setproctitle";
12   version = "1.3.3";
13   pyproject = true;
15   disabled = pythonOlder "3.6";
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-yRPhUefqAVZ4N/8DeiPKh0AZKIAZi3+7kLFtGBYHyq4=";
20   };
22   nativeBuildInputs = [ setuptools ];
24   nativeCheckInputs = [ pytestCheckHook ];
26   # tries to compile programs with dependencies that aren't available
27   disabledTestPaths = [ "tests/setproctitle_test.py" ];
29   meta = with lib; {
30     description = "Allows a process to change its title (as displayed by system tools such as ps and top)";
31     homepage = "https://github.com/dvarrazzo/py-setproctitle";
32     license = licenses.bsdOriginal;
33     maintainers = with maintainers; [ exi ];
34   };