pythonPackages.nest-asyncio: cleanup

This commit is contained in:
Drew Risinger 2020-01-29 13:26:46 -05:00 committed by Jon
parent ba265813df
commit 74de16787f

View File

@ -1,4 +1,4 @@
{ stdenv { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonAtLeast , pythonAtLeast
@ -19,10 +19,10 @@ buildPythonPackage rec {
doCheck = false; doCheck = false;
pythonImportsCheck = [ "nest_asyncio" ]; pythonImportsCheck = [ "nest_asyncio" ];
meta = with stdenv.lib; { meta = with lib; {
homepage = https://github.com/erdewit/nest_asyncio;
description = "Patch asyncio to allow nested event loops"; description = "Patch asyncio to allow nested event loops";
homepage = "https://github.com/erdewit/nest_asyncio";
license = licenses.bsdOriginal; license = licenses.bsdOriginal;
maintainers = [ maintainers.costrouc ]; maintainers = with maintainers; [ costrouc ];
}; };
} }