Merge pull request #200983 from marsam/update-curio

python310Packages.curio: 1.5 -> 1.6
This commit is contained in:
Mario Rodas 2022-11-13 10:46:51 -05:00 committed by GitHub
commit 6e71b0e633
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,12 +9,13 @@
buildPythonPackage rec {
pname = "curio";
version = "1.5";
version = "1.6";
format = "setuptools";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-rwghLlkLt9qOTMOcQgEnEUlNwg1iLxYhVbopbMLjvBA=";
sha256 = "sha256-VipYbbICFrp9K+gmPeuesHnlYEj5uJBtEdX0WqgcUkc=";
};
checkInputs = [
@ -37,8 +38,9 @@ buildPythonPackage rec {
pythonImportsCheck = [ "curio" ];
meta = with lib; {
homepage = "https://github.com/dabeaz/curio";
description = "Library for performing concurrent I/O with coroutines in Python";
homepage = "https://github.com/dabeaz/curio";
changelog = "https://github.com/dabeaz/curio/raw/${version}/CHANGES";
license = licenses.bsd3;
maintainers = [ maintainers.marsam ];
};