packages/dvc: use our patched dvc-data

This commit is contained in:
Max Headroom 2022-12-17 14:28:15 +01:00
parent e1e1a83abf
commit 09149ef655

View file

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