mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
32 lines
768 B
Nix
32 lines
768 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "setproctitle";
|
|
version = "1.2";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "9b4e48722dd96cbd66d5bf2eab930fff8546cd551dd8d774c8a319448bd381a6";
|
|
};
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
# tries to compile programs with dependencies that aren't available
|
|
pytestFlagsArray = [ "--ignore=tests/setproctitle_test.py" ];
|
|
|
|
meta = with 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 ];
|
|
};
|
|
|
|
}
|