Unverified Commit 7250371e authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

python3Packages.ds-store: fix build (#501479)

parents 9cf954d4 e153efbb
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -19,9 +19,14 @@ buildPythonPackage rec {
    hash = "sha256-UqBZ6w9y+eOQ+OdhXJReT4GwaxEbrGFvmUQMrNyBdjU=";
  };

  nativeBuildInputs = [ setuptools ];
  postPatch = ''
    substituteInPlace pyproject.toml \
      --replace-fail "setuptools==80.9.0" "setuptools"
  '';

  propagatedBuildInputs = [ mac-alias ];
  build-system = [ setuptools ];

  dependencies = [ mac-alias ];

  nativeCheckInputs = [ pytestCheckHook ];