From 1dfe0f0512479a14d3e335c2eeb9392e872856ad Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 24 Feb 2021 10:13:54 +0100 Subject: [PATCH] python3Packages.pg8000: update meta (add license) --- pkgs/development/python-modules/pg8000/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pg8000/default.nix b/pkgs/development/python-modules/pg8000/default.nix index 6148d047908..ad51a80674b 100644 --- a/pkgs/development/python-modules/pg8000/default.nix +++ b/pkgs/development/python-modules/pg8000/default.nix @@ -23,8 +23,9 @@ buildPythonPackage rec { pythonImportsCheck = [ "pg8000" ]; meta = with lib; { + description = "Python driver for PostgreSQL"; homepage = "https://github.com/tlocke/pg8000"; - description = "PostgreSQL interface library, for asyncio"; + license = with licenses; [ bsd3 ]; maintainers = with maintainers; [ domenkozar ]; platforms = platforms.unix; };