pythonPackages.click-default-group: fix tests

Also use pytestCheckHook and pythonImportsCheck.
This commit is contained in:
Robert Schütz 2021-06-20 16:15:07 +02:00 committed by Martin Weinelt
parent 02a329cd7d
commit a2d58534e0

View file

@ -1,4 +1,10 @@
{ lib, buildPythonPackage, fetchFromGitHub, click, pytest }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, click
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "click-default-group";
@ -12,9 +18,19 @@ buildPythonPackage rec {
sha256 = "0nk39lmkn208w8kvq6f4h3a6qzxrrvxixahpips6ik3zflbkss86";
};
patches = [
# make tests compatible with click 8
(fetchpatch {
url = "https://github.com/click-contrib/click-default-group/commit/9415c77d05cf7d16876e7d70a49a41a6189983b4.patch";
sha256 = "1czzma8nmwyxhwhnr8rfw5bjw6d46b3s5r5bfb8ly3sjwqjlwhw2";
})
];
propagatedBuildInputs = [ click ];
checkInputs = [ pytest ];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "click_default_group" ];
meta = with lib; {
homepage = "https://github.com/click-contrib/click-default-group";