Merge pull request #166091 from r-ryantm/auto-update/python310Packages.asyncstdlib

python310Packages.asyncstdlib: 3.10.3 -> 3.10.4
This commit is contained in:
Fabian Affolter 2022-03-28 21:41:10 +02:00 committed by GitHub
commit 95c6e27177
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,15 +8,16 @@
buildPythonPackage rec {
pname = "asyncstdlib";
version = "3.10.3";
disabled = pythonOlder "3.7";
version = "3.10.4";
format = "flit";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "maxfischer2781";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Q547XKsn4/U7XbDhZADF4qPpFxAGPmv9bAXSQZnNUIo=";
hash = "sha256-zPWXI5iHMCkSVjyNRcXplTadobYCeMv3Unjt+QVF8D8=";
};
propagatedBuildInputs = [
@ -27,7 +28,9 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "asyncstdlib" ];
pythonImportsCheck = [
"asyncstdlib"
];
meta = with lib; {
description = "Python library that extends the Python asyncio standard library";