Prevent python tests on python packages

As they fail, issues are referenced.
This commit is contained in:
Daniel Siepmann 2023-01-25 07:49:50 +01:00
parent 174bc4d446
commit dde977a1af
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,6 @@
self: super: {
khal = super.khal.overridePythonAttrs(old: {
# As long as https://github.com/NixOS/nixpkgs/issues/205014 is open
doCheck = false;
});
}

View file

@ -0,0 +1,6 @@
self: super: {
mycli = super.mycli.overridePythonAttrs(old: {
# As long as https://github.com/NixOS/nixpkgs/issues/211415is is open
doCheck = false;
});
}