From 74de16787f7ee27df6851d68aed75bee04afa29f Mon Sep 17 00:00:00 2001 From: Drew Risinger Date: Wed, 29 Jan 2020 13:26:46 -0500 Subject: [PATCH] pythonPackages.nest-asyncio: cleanup --- pkgs/development/python-modules/nest-asyncio/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/nest-asyncio/default.nix b/pkgs/development/python-modules/nest-asyncio/default.nix index 0016da922ff..334edd0cf1e 100644 --- a/pkgs/development/python-modules/nest-asyncio/default.nix +++ b/pkgs/development/python-modules/nest-asyncio/default.nix @@ -1,4 +1,4 @@ -{ stdenv +{ lib , buildPythonPackage , fetchPypi , pythonAtLeast @@ -19,10 +19,10 @@ buildPythonPackage rec { doCheck = false; pythonImportsCheck = [ "nest_asyncio" ]; - meta = with stdenv.lib; { - homepage = https://github.com/erdewit/nest_asyncio; + meta = with lib; { description = "Patch asyncio to allow nested event loops"; + homepage = "https://github.com/erdewit/nest_asyncio"; license = licenses.bsdOriginal; - maintainers = [ maintainers.costrouc ]; + maintainers = with maintainers; [ costrouc ]; }; }