[staging-next] python3Packages.statmake: fix build (#434777)

authored by K900 and committed by GitHub dff36630 a5f99de0

+7
+7
pkgs/development/python-modules/statmake/default.nix
··· 13 pythonOlder, 14 ufo2ft, 15 ufolib2, 16 }: 17 18 buildPythonPackage rec { ··· 28 tag = "v${version}"; 29 hash = "sha256-UqL3l27Icu5DoVvFYctbOF7gvKvVV6hK1R5A1y9SYkU="; 30 }; 31 32 nativeBuildInputs = [ poetry-core ]; 33
··· 13 pythonOlder, 14 ufo2ft, 15 ufolib2, 16 + hatchling, 17 + hatch-vcs, 18 }: 19 20 buildPythonPackage rec { ··· 30 tag = "v${version}"; 31 hash = "sha256-UqL3l27Icu5DoVvFYctbOF7gvKvVV6hK1R5A1y9SYkU="; 32 }; 33 + 34 + build-system = [ 35 + hatchling 36 + hatch-vcs 37 + ]; 38 39 nativeBuildInputs = [ poetry-core ]; 40