Skip to content

Commit

Permalink
treewide: fixup the embedded sqlalchemy
Browse files Browse the repository at this point in the history
I got tired of doing this one commit per package.
  • Loading branch information
vcunat committed Jul 21, 2023
1 parent e90d511 commit 9249f60
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 6 deletions.
4 changes: 4 additions & 0 deletions pkgs/applications/misc/pytrainer/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ let
inherit version;
hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA=";
};
disabledTestPaths = [
"test/aaa_profiling"
"test/ext/mypy"
];
});
});
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ let
inherit version;
hash = "sha256-RKZgUGCAzJdeHfpXdv5fYxXdxiane1C/Du4YsDieomU=";
};
disabledTestPaths = [
"test/aaa_profiling"
"test/ext/mypy"
];
});
moto = super.moto.overridePythonAttrs (oldAttrs: rec {
# a lot of tests -> very slow, we already build them when building python packages
Expand Down
4 changes: 4 additions & 0 deletions pkgs/servers/apache-airflow/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ let
rev = "refs/tags/rel_${lib.replaceStrings [ "." ] [ "_" ] version}";
hash = "sha256-qyD3uoxEnD2pdVvwpUlSqHB3drD4Zg/+ov4CzLFIlLs=";
};
disabledTestPaths = [
"test/aaa_profiling"
"test/ext/mypy"
];
});

apache-airflow = pySelf.callPackage ./python-package.nix { };
Expand Down
4 changes: 4 additions & 0 deletions pkgs/servers/calibre-web/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ let
inherit version;
hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA=";
};
disabledTestPaths = [
"test/aaa_profiling"
"test/ext/mypy"
];
});
};
};
Expand Down
4 changes: 4 additions & 0 deletions pkgs/tools/misc/ntfy/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ let
inherit version;
hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA=";
};
disabledTestPaths = [
"test/aaa_profiling"
"test/ext/mypy"
];
};
};
};
Expand Down
4 changes: 4 additions & 0 deletions pkgs/tools/misc/sqlite3-to-mysql/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ let
inherit version;
hash = "sha256-LdpflnGa6Js+wPG3lpjYbrmuyx1U6ZCrs/3ZLAS0apA=";
};
disabledTestPaths = [
"test/aaa_profiling"
"test/ext/mypy"
];
};
};
self = py;
Expand Down
9 changes: 3 additions & 6 deletions pkgs/tools/text/csvkit/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,9 @@ let
inherit version;
hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA=";
};
nativeCheckInputs = oldAttrs.nativeCheckInputs ++ (with super; [
pytest-xdist
]);
disabledTestPaths = (oldAttrs.disabledTestPaths or []) ++ [
"test/aaa_profiling"
"test/ext/mypy"
disabledTestPaths = [
"test/aaa_profiling"
"test/ext/mypy"
];
});
};
Expand Down

0 comments on commit 9249f60

Please sign in to comment.