lol

python312Packages.mdformat-tables: fix dependencies

https://hydra.nixos.org/build/287351094/log/tail

+13 -3
+13 -3
pkgs/development/python-modules/mdformat-tables/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 + pythonOlder, 6 + 7 + # build dependencies 5 8 flit-core, 9 + 10 + # dependencies 6 11 mdformat, 12 + wcwidth, 13 + 14 + # tests 7 15 pytestCheckHook, 8 - pythonOlder, 9 16 }: 10 17 11 18 buildPythonPackage rec { ··· 22 29 hash = "sha256-7MbpGBGprhGrQ9P31HUU2h0bjyHWap6DETVN/dCDA1w="; 23 30 }; 24 31 25 - nativeBuildInputs = [ flit-core ]; 32 + build-system = [ flit-core ]; 26 33 27 - propagatedBuildInputs = [ mdformat ]; 34 + dependencies = [ 35 + mdformat 36 + wcwidth 37 + ]; 28 38 29 39 nativeCheckInputs = [ pytestCheckHook ]; 30 40