Commit 19cee401 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python311Packages.textual-universal-directorytree: add patch for universal-pathlib

parent e010085c
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, hatchling
, textual
, universal-pathlib
@@ -27,6 +28,15 @@ buildPythonPackage rec {
    hash = "sha256-FL2bwPGqBmDn33Rhj7+VEpuqB4znEAw+GGAODTs25oo=";
  };

  patches = [
    # universal-pathlib upgrade, https://github.com/juftin/textual-universal-directorytree/pull/2
    (fetchpatch {
      name = "universal-pathlib-upgrade.patch";
      url = "https://github.com/juftin/textual-universal-directorytree/commit/e445aff21ddf756e3f180c8308a75c41487667c3.patch";
      hash = "sha256-Fftx8rrLPb6lQ+HBdB5Ai55LHMWEO6XftmFfZXbXIyk=";
    })
  ];

  nativeBuildInputs = [
    hatchling
  ];