pythonPackages.asyncpg: add import check, remove unused input

This commit is contained in:
Sandro Jäckel 2021-02-16 22:36:52 +01:00
parent 9df68ae7ea
commit 1e489c8935
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,4 +1,4 @@
{ lib, isPy3k, fetchPypi, fetchpatch, buildPythonPackage
{ lib, isPy3k, fetchPypi, buildPythonPackage
, uvloop, postgresql }:
buildPythonPackage rec {
@ -16,6 +16,8 @@ buildPythonPackage rec {
postgresql
];
pythonImportsCheck = [ "asyncpg" ];
meta = with lib; {
homepage = "https://github.com/MagicStack/asyncpg";
description = "An asyncio PosgtreSQL driver";