pythonPackages.jq: disable tests, add pythonImportsCheck

This commit is contained in:
Sandro Jäckel 2021-02-23 16:32:35 +01:00
parent 5f7a2783db
commit 0e3d110b2c
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -8,10 +8,15 @@ buildPythonPackage rec {
inherit pname version;
sha256 = "62d649c4f6f26ed91810c8db075f5fe05319c3dc99dbebcd2d31b0b697a4592e";
};
patches = [ ./jq-py-setup.patch ];
buildInputs = [ jq ];
# no tests executed
doCheck = false;
pythonImportsCheck = [ "jq" ];
meta = {
description = "Python bindings for jq, the flexible JSON processor";
homepage = "https://github.com/mwilliamson/jq.py";