Merge pull request #309002 from fabaff/gipc-fix

python312Packages.gipc: 1.4.0 -> 1.6.0
This commit is contained in:
Fabian Affolter
2024-05-04 15:33:35 +02:00
committed by GitHub
@@ -1,33 +1,56 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, gevent
, pytestCheckHook
{
lib,
buildPythonPackage,
fetchFromGitHub,
gevent,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "gipc";
version = "1.4.0";
format = "setuptools";
version = "1.6.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jgehrcke";
repo = "gipc";
rev = "refs/tags/${version}";
hash = "sha256-T5TqLanODyzJGyjDZz+75bbz3THxoobYnfJFQxAB76E=";
hash = "sha256-eYE7A1VDJ0NSshvdJKxPwGyVdW6BnyWoRSR1i1iTr8Y=";
};
postPatch = ''
substituteInPlace setup.py \
--replace "gevent>=1.5,<=21.12.0" "gevent>=1.5"
--replace-fail "gevent>=1.5,<=23.9.1" "gevent>=1.5"
'';
propagatedBuildInputs = [
gevent
];
build-system = [ setuptools ];
nativeCheckInputs = [
pytestCheckHook
dependencies = [ gevent ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "gipc" ];
disabledTests = [
# AttributeError
"test_all_handles_length"
"test_child"
"test_closeread"
"test_closewrite"
"test_early_readchild_exit"
"test_handlecount"
"test_handler"
"test_onewriter"
"test_readclose"
"test_singlemsg"
"test_twochannels_singlemsg"
"test_twoclose"
"test_twowriters"
"test_write_closewrite_read"
];
meta = with lib; {
@@ -41,7 +64,8 @@ buildPythonPackage rec {
anywhere within your gevent-powered application.
'';
homepage = "http://gehrcke.de/gipc";
changelog = "https://github.com/jgehrcke/gipc/blob/${version}/CHANGELOG.rst";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}