Unverified Commit 7d70df51 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

treewide: fix typo of updateScript as updateScripts (#514776)

parents b24161b0 81170514
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
    "markitdown_mcp"
  ];

  passthru.updateScripts = gitUpdater { };
  passthru.updateScript = gitUpdater { };

  meta = {
    description = "MCP server for the markitdown library";
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ buildPythonPackage rec {
    "test_sub_sub_classes_are_included_in_abc"
  ];

  passthru.updateScripts = gitUpdater { };
  passthru.updateScript = gitUpdater { };

  meta = {
    description = "Create Python data objects";
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ buildPythonPackage rec {
  # Disabling tests, they rely on Nose which is outdated and not supported
  doCheck = false;

  passthru.updateScripts = gitUpdater { };
  passthru.updateScript = gitUpdater { };

  meta = {
    description = "Mocking framework for Python, influenced by JMock";
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ buildPythonPackage rec {
    export PATH=$out/bin:$PATH
  '';

  passthru.updateScripts = gitUpdater { };
  passthru.updateScript = gitUpdater { };

  meta = {
    description = "Convert Word documents (.docx files) to HTML";
+1 −1
Original line number Diff line number Diff line
@@ -100,7 +100,7 @@ buildPythonPackage (finalAttrs: {
    "test_module_misc"
  ];

  passthru.updateScripts = gitUpdater { };
  passthru.updateScript = gitUpdater { };

  meta = {
    description = "Python tool for converting files and office documents to Markdown";
Loading