python3Packages.billiard: 3.6.3.0 -> 3.6.4.0

This commit is contained in:
Martin Weinelt 2021-06-21 13:00:24 +02:00
parent 8ca169f99d
commit 17b8e87f40

View File

@ -1,23 +1,27 @@
{ lib, buildPythonPackage, fetchPypi, isPyPy, pytestCheckHook, case, psutil, fetchpatch }:
{ lib
, buildPythonPackage
, fetchPypi
, isPyPy
, pytestCheckHook
, case
, psutil
}:
buildPythonPackage rec {
pname = "billiard";
version = "3.6.3.0";
version = "3.6.4.0";
disabled = isPyPy;
src = fetchPypi {
inherit pname version;
sha256 = "0spssl3byzqsplra166d59jx8iqfxyzvcbx7vybkmwr5ck72a5yr";
sha256 = "0ismj2p8c66ykpss94rs0bfra5agxxmljz8r3gaq79r8valfb799";
};
patches = [(fetchpatch {
# Add Python 3.9 support to spawnv_passfds()
# Should be included in next release after 3.6.3.0
url = "https://github.com/celery/billiard/pull/310/commits/a508ebafadcfe2e25554b029593f3e66d01ede6c.patch";
sha256 = "05zsr1bvjgi01qg7r274c0qvbn65iig3clyz14c08mpfyn38h84i";
excludes = [ "tox.ini" ];
})];
checkInputs = [ pytestCheckHook case psutil ];
checkInputs = [
case
psutil
pytestCheckHook
];
meta = with lib; {
homepage = "https://github.com/celery/billiard";