From 5d368782068c612e018b1e555699867bc22ca733 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 15 Nov 2023 16:42:40 +0100 Subject: [PATCH] drop schemathesis This creates conflicting python packages when included --- pkgs/clan-cli/default.nix | 4 ++-- pkgs/clan-cli/flake-module.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/clan-cli/default.nix b/pkgs/clan-cli/default.nix index a639f70bb..9a66cb5f5 100644 --- a/pkgs/clan-cli/default.nix +++ b/pkgs/clan-cli/default.nix @@ -35,7 +35,6 @@ , e2fsprogs , mypy , deal -, schemathesis , rope , clan-core-path }: @@ -54,7 +53,8 @@ let pytest-xdist pytest-timeout deal - schemathesis + # commented out because it injects an incompatible httpx version into our python env + #schemathesis remote-pdb ipdb openssh diff --git a/pkgs/clan-cli/flake-module.nix b/pkgs/clan-cli/flake-module.nix index 9bcfc7dc4..b369a2754 100644 --- a/pkgs/clan-cli/flake-module.nix +++ b/pkgs/clan-cli/flake-module.nix @@ -36,7 +36,7 @@ clan-cli = pkgs.python3.pkgs.callPackage ./default.nix { inherit (self'.packages) ui-assets; inherit (inputs) nixpkgs; - inherit (inputs.nixpkgs-for-deal.legacyPackages.${system}.python3Packages) deal schemathesis; + inherit (inputs.nixpkgs-for-deal.legacyPackages.${system}.python3Packages) deal; clan-core-path = clanCoreWithVendoredDeps; }; inherit (self'.packages.clan-cli) clan-openapi;