lol

python3Packages.mdformat-tables: switch to pypaBuildHook

+6 -1
+6 -1
pkgs/development/python-modules/mdformat-tables/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 + , flit-core 4 5 , mdformat 5 6 , mdit-py-plugins 6 7 , pytestCheckHook ··· 10 11 buildPythonPackage rec { 11 12 pname = "mdformat-tables"; 12 13 version = "0.4.1"; 13 - format = "flit"; 14 + format = "pyproject"; 14 15 15 16 disabled = pythonOlder "3.7"; 16 17 ··· 20 21 rev = "v${version}"; 21 22 hash = "sha256-Q61GmaRxjxJh9GjyR8QCZOH0njFUtAWihZ9lFQJ2nQQ="; 22 23 }; 24 + 25 + nativeBuildInputs = [ 26 + flit-core 27 + ]; 23 28 24 29 buildInputs = [ 25 30 mdformat