python3Packages.testpath: enable tests

This commit is contained in:
Martin Weinelt 2021-06-19 02:19:05 +02:00
parent 136f6574a3
commit d0e776436e

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
}:
buildPythonPackage rec {
@ -12,6 +13,10 @@ buildPythonPackage rec {
sha256 = "05z4s4d5i1ja16hiv4jhqv63fvg1a4vw77s0ay1sw11hrl5pmkqs";
};
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "Test utilities for code working with files and commands";
license = licenses.mit;