Commit c1193da0 authored by zowoq's avatar zowoq
Browse files

python3Packages.mkdocs-redirects: switch to pyproject, hatchling

was done upstream in https://github.com/mkdocs/mkdocs-redirects/commit/f3d0e12c982f3b25b4b7d128eba1704b8a60ff17 which was included in the 1.2.2 release
parent b8d3fd79
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  hatchling,
  mkdocs,
  pytestCheckHook,
}:
@@ -9,7 +10,7 @@
buildPythonPackage rec {
  pname = "mkdocs-redirects";
  version = "1.2.2";
  format = "setuptools";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "mkdocs";
@@ -18,6 +19,8 @@ buildPythonPackage rec {
    hash = "sha256-YsMA00yajeGSqSB6CdKxGqyClC9Cgc3ImRBTucHEHhs=";
  };

  build-system = [ hatchling ];

  propagatedBuildInputs = [ mkdocs ];

  nativeCheckInputs = [ pytestCheckHook ];