lol

python3Packages.testpath: enable tests

+5
+5
pkgs/development/python-modules/testpath/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , pytestCheckHook 4 5 }: 5 6 6 7 buildPythonPackage rec { ··· 11 12 inherit pname version; 12 13 sha256 = "05z4s4d5i1ja16hiv4jhqv63fvg1a4vw77s0ay1sw11hrl5pmkqs"; 13 14 }; 15 + 16 + checkInputs = [ 17 + pytestCheckHook 18 + ]; 14 19 15 20 meta = with lib; { 16 21 description = "Test utilities for code working with files and commands";