Merge pull request #201130 from dotlambda/twisted-22.10.0

This commit is contained in:
Martin Weinelt
2022-11-14 23:29:27 +01:00
committed by GitHub
@@ -16,6 +16,7 @@
, glibcLocales
, h2
, hyperlink
, hypothesis
, idna
, incremental
, priority
@@ -45,7 +46,7 @@
buildPythonPackage rec {
pname = "twisted";
version = "22.8.0";
version = "22.10.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@@ -54,17 +55,9 @@ buildPythonPackage rec {
pname = "Twisted";
inherit version;
extension = "tar.gz";
hash = "sha256-5bYN458tHaFT++GHTYhf4/y9sh/MRG+nWaU+j8NRO+0=";
hash = "sha256-Mqy9QKlPX0bntCwQm/riswIlCUVWF4Oot6BZBI8tTTE=";
};
patches = [
(fetchpatch {
name = "fix-test_openFileDescriptors.patch";
url = "https://github.com/twisted/twisted/commit/47f47634940141466177261b20bb43c300531e38.patch";
hash = "sha256-wacnF166PnZHXJEqTlPZUdDILJIVHOcnC2a34SQumvs=";
})
];
__darwinAllowLocalNetworking = true;
propagatedBuildInputs = [
@@ -128,6 +121,7 @@ buildPythonPackage rec {
checkInputs = [
git
glibcLocales
hypothesis
pyhamcrest
]
++ passthru.optional-dependencies.conch
@@ -169,11 +163,7 @@ buildPythonPackage rec {
meta = with lib; {
homepage = "https://github.com/twisted/twisted";
description = "Twisted, an event-driven networking engine written in Python";
longDescription = ''
Twisted is an event-driven networking engine written in Python
and licensed under the MIT license.
'';
description = "Asynchronous networking framework written in Python";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};