summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <v@cunat.cz>2023-07-21 09:39:44 +0200
committerVladimír Čunát <v@cunat.cz>2023-07-21 09:41:49 +0200
commitf5d5556aafba1e0c64c2a34d740fb208c3a30e9b (patch)
tree862d1ae2088ea999c216c879d83007674e07f97e
parent17a15a50abead91057d245f3c1dc5feb684228fa (diff)
downloadnixpkgs-f5d5556aafba1e0c64c2a34d740fb208c3a30e9b.tar
nixpkgs-f5d5556aafba1e0c64c2a34d740fb208c3a30e9b.tar.gz
nixpkgs-f5d5556aafba1e0c64c2a34d740fb208c3a30e9b.tar.bz2
nixpkgs-f5d5556aafba1e0c64c2a34d740fb208c3a30e9b.tar.lz
nixpkgs-f5d5556aafba1e0c64c2a34d740fb208c3a30e9b.tar.xz
nixpkgs-f5d5556aafba1e0c64c2a34d740fb208c3a30e9b.tar.zst
nixpkgs-f5d5556aafba1e0c64c2a34d740fb208c3a30e9b.zip
ceph: fixup the embedded sqlalchemy
This version-override approach is annoying me, as the original
derivation is then supposed to support multiple versions
without knowing about it.  And naturally it tends to break.
(this time on 446a8703c3b)
https://hydra.nixos.org/build/228178995/nixlog/3/tail
-rw-r--r--pkgs/tools/filesystems/ceph/default.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/tools/filesystems/ceph/default.nix b/pkgs/tools/filesystems/ceph/default.nix
index 605f505dd5b..2437fd358a7 100644
--- a/pkgs/tools/filesystems/ceph/default.nix
+++ b/pkgs/tools/filesystems/ceph/default.nix
@@ -172,10 +172,7 @@ let
           inherit version;
           hash = "sha256-aRO4JH2KKS74MVFipRkx4rQM6RaB8bbxj2lwRSAMSjA=";
         };
-        nativeCheckInputs = oldAttrs.nativeCheckInputs ++ (with super; [
-          pytest-xdist
-        ]);
-        disabledTestPaths = (oldAttrs.disabledTestPaths or []) ++ [
+        disabledTestPaths = [
           "test/aaa_profiling"
           "test/ext/mypy"
         ];