mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
python312Packages.billiard: 4.2.0 -> 4.2.1 (#343519)
This commit is contained in:
commit
7e47232c97
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user