Commit d890b78d authored by Bruno BELANYI's avatar Bruno BELANYI
Browse files

upsies: allow overriding 'runtimeDeps'

parent 032a7692
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ python3Packages.buildPythonApplication (finalAttrs: {
      pytestCheckHook
      trustme
    ]
    ++ runtimeDeps;
    ++ finalAttrs.passthru.runtimeDeps;

  disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
    # Fail during object comparisons on Darwin
@@ -110,11 +110,15 @@ python3Packages.buildPythonApplication (finalAttrs: {
    "--suffix"
    "PATH"
    ":"
    (lib.makeBinPath runtimeDeps)
    (lib.makeBinPath finalAttrs.passthru.runtimeDeps)
  ];

  __darwinAllowLocalNetworking = true;

  passthru = {
    inherit runtimeDeps;
  };

  meta = {
    description = "Toolkit for collecting, generating, normalizing and sharing video metadata";
    homepage = "https://upsies.readthedocs.io/";