python3Packages.setproctitle: 1.3.2 -> 1.3.3

This commit is contained in:
Martin Weinelt 2023-12-03 00:02:55 +01:00
parent 67360ff461
commit d2295edb43
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -2,25 +2,34 @@
, buildPythonPackage
, pythonOlder
, fetchPypi
, setuptools
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "setproctitle";
version = "1.3.2";
format = "setuptools";
version = "1.3.3";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-ufuXkHyDDSYPoGWO1Yr9SKhrK4iqxSETXDUv9/00d/0=";
hash = "sha256-yRPhUefqAVZ4N/8DeiPKh0AZKIAZi3+7kLFtGBYHyq4=";
};
nativeCheckInputs = [ pytestCheckHook ];
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
pytestCheckHook
];
# tries to compile programs with dependencies that aren't available
pytestFlagsArray = [ "--ignore=tests/setproctitle_test.py" ];
disabledTestPaths = [
"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)";