Merge pull request #211198 from fabaff/txaio-fix

python310Packages.txaio: 22.2.1 -> 23.1.1
This commit is contained in:
Fabian Affolter 2023-01-17 13:02:33 +01:00 committed by GitHub
commit cd10a33b7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,12 +11,14 @@
buildPythonPackage rec {
pname = "txaio";
version = "22.2.1";
version = "23.1.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-LkWCtw8EsjRZCCVGhKmEIGwNm1DjB0okpMVauiHSTQE=";
hash = "sha256-+akhbpduXjJG39ESrXrVXKkVYGtguEp1esdpvUBP9wQ=";
};
propagatedBuildInputs = [
@ -42,11 +44,14 @@ buildPythonPackage rec {
"test_cancel"
];
pythonImportsCheck = [ "txaio" ];
pythonImportsCheck = [
"txaio"
];
meta = with lib; {
description = "Utilities to support code that runs unmodified on Twisted and asyncio";
homepage = "https://github.com/crossbario/txaio";
changelog = "https://github.com/crossbario/txaio/blob/v${version}/docs/releases.rst";
license = licenses.mit;
maintainers = with maintainers; [ ];
};