python312Packages.billiard: 4.2.0 -> 4.2.1 (#343519)

This commit is contained in:
Nick Cao 2024-09-23 09:21:39 -04:00 committed by GitHub
commit 7e47232c97
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,8 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
setuptools,
pytestCheckHook,
psutil,
pythonOlder,
@ -9,33 +10,32 @@
buildPythonPackage rec {
pname = "billiard";
version = "4.2.0";
format = "setuptools";
version = "4.2.1";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-mjwxhMsnWqF6cy+T9lsgxSXT2fJTci0mqCGUgDreWiw=";
src = fetchFromGitHub {
owner = "celery";
repo = "billiard";
rev = "refs/tags/v${version}";
hash = "sha256-9LuAlIn6hNiZGvWuaaDQxx9g0aBVF6Z2krxEOrssqRs=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
psutil
pytestCheckHook
];
disabledTests = [
# psutil.NoSuchProcess: process no longer exists (pid=168)
"test_set_pdeathsig"
];
pythonImportsCheck = [ "billiard" ];
meta = with lib; {
meta = {
description = "Python multiprocessing fork with improvements and bugfixes";
homepage = "https://github.com/celery/billiard";
changelog = "https://github.com/celery/billiard/blob/v${version}/CHANGES.txt";
license = licenses.bsd3;
maintainers = [ ];
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ nickcao ];
};
}