Platform 22.11 #88

Merged
max merged 31 commits from platform-22.11 into master 2022-12-18 17:21:17 +02:00
Showing only changes of commit 09149ef655 - Show all commits

View file

@ -3,8 +3,16 @@ let
pins = import ./sources;
in with tools;
super: rec {
dvc = patch (super.dvc.overrideAttrs (old: {
propagatedBuildInputs = with super.python3Packages; old.propagatedBuildInputs ++ [
dvc = patch (super.dvc.overrideAttrs (old: let
filteredBaseDeps = super.lib.subtractLists [
super.python3Packages.dvc-data
] old.propagatedBuildInputs;
baseDeps = filteredBaseDeps ++ [
dvc-data
];
in {
propagatedBuildInputs = with super.python3Packages; baseDeps ++ [
aiobotocore
boto3
(s3fs.overrideAttrs (_: { postPatch = ''