disable broken dask tests
This commit is contained in:
parent
676c368163
commit
d0113dcfe4
1 changed files with 7 additions and 1 deletions
|
@ -4,7 +4,13 @@
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
}: let
|
}: let
|
||||||
source = builtins.fromJSON (builtins.readFile ./source.json);
|
source = builtins.fromJSON (builtins.readFile ./source.json);
|
||||||
python = python3;
|
python = python3.override {
|
||||||
|
packageOverrides = self: super: {
|
||||||
|
dask = super.dask.overrridePythonAttrs (_: {
|
||||||
|
installCheckPhase = "true";
|
||||||
|
});
|
||||||
|
};
|
||||||
|
};
|
||||||
in
|
in
|
||||||
python.pkgs.buildPythonPackage rec {
|
python.pkgs.buildPythonPackage rec {
|
||||||
pname = "mautrix-telegram";
|
pname = "mautrix-telegram";
|
||||||
|
|
Reference in a new issue