Skip to content

Instantly share code, notes, and snippets.

@simon-weber
Created July 7, 2019 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save simon-weber/3023d783d1952dc0814ee80e724cb63a to your computer and use it in GitHub Desktop.
Save simon-weber/3023d783d1952dc0814ee80e724cb63a to your computer and use it in GitHub Desktop.
nixpkgs.overlays = [ (self: super: {
duplicity = super.duplicity.overrideAttrs (oldAttrs: {
doCheck = false;
# if this line is uncommented, tests run regardless of the above line:
# propagatedBuildInputs = oldAttrs.propagatedBuildInputs ++ [ (pydrive pkgs).packages.PyDrive ];
# with it commented, tests are skipped as expected
});
}
)];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment