python3Packages.mdformat-admon: switch to pypaBuildHook

This commit is contained in:
Peder Bergebakken Sundt 2023-09-10 00:16:56 +02:00
parent 215bfa6c37
commit a6bfb7870a

View file

@ -24,7 +24,7 @@ let
in python.pkgs.buildPythonPackage rec {
pname = "mdformat-admon";
version = "1.0.2";
format = "flit";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -35,6 +35,10 @@ in python.pkgs.buildPythonPackage rec {
hash = "sha256-33Q3Re/axnoOHZ9XYA32mmK+efsSelJXW8sD7C1M/jU=";
};
nativeBuildInputs = with python.pkgs; [
flit-core
];
buildInputs = with python.pkgs; [
mdformat
];