Skip to content

Commit

Permalink
poetry update
Browse files Browse the repository at this point in the history
  • Loading branch information
fpletz committed Sep 13, 2024
1 parent b304cc4 commit 036bf02
Show file tree
Hide file tree
Showing 3 changed files with 238 additions and 251 deletions.
8 changes: 7 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@
{ pkgs, ... }:
let
pkgs' = pkgs.extend (inputs.poetry2nix.overlays.default);
overrides = pkgs'.poetry2nix.overrides.withDefaults (final: prev: { });
overrides = pkgs'.poetry2nix.overrides.withDefaults (
final: prev: {
urllib3 = prev.urllib3.overridePythonAttrs (attrs: {
nativeBuildInputs = attrs.nativeBuildInputs ++ [ final.hatch-vcs ];
});
}
);
python-vatsim = pkgs'.poetry2nix.mkPoetryApplication {
inherit overrides;
projectDir = pkgs'.poetry2nix.cleanPythonSources { src = ./.; };
Expand Down
Loading

0 comments on commit 036bf02

Please sign in to comment.