python3Packages.vulture: switch to pytestCheckHook

This commit is contained in:
Fabian Affolter 2021-01-18 10:56:20 +01:00
parent f2c5d663b2
commit eecfd010c7

View file

@ -1,4 +1,12 @@
{ lib, stdenv, buildPythonPackage, fetchPypi, isPy27, coverage, pytest, pytestcov }:
{ lib
, buildPythonPackage
, coverage
, fetchPypi
, isPy27
, pytest-cov
, pytestCheckHook
, toml
}:
buildPythonPackage rec {
pname = "vulture";
@ -10,8 +18,15 @@ buildPythonPackage rec {
sha256 = "0ryrmsm72z3fzaanyblz49q40h9d3bbl4pspn2lvkkp9rcmsdm83";
};
checkInputs = [ coverage pytest pytestcov ];
checkPhase = "pytest";
propagatedBuildInputs = [ toml ];
checkInputs = [
coverage
pytest-cov
pytestCheckHook
];
pythonImportsCheck = [ "vulture" ];
meta = with lib; {
description = "Finds unused code in Python programs";