We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4de285 commit b925fdcCopy full SHA for b925fdc
flake.nix
@@ -13,25 +13,24 @@
13
devShell = forAllSystems (system:
14
let
15
pkgs = import nixpkgs { inherit system; };
16
+
17
+ pythonEnvironment = pkgs.python312.withPackages (ps: with ps; [
18
+ flask
19
+ flask-restful
20
+ yt-dlp
21
+ podgen
22
+ feedparser
23
+ pygeocodio
24
+ jobspy
25
+ ]);
26
in
27
with pkgs;
28
mkShell {
29
name = "dev shell";
30
- nativeBuildInputs = [ uv ];
-
- build-system = with python3Packages; [
- hatchling
- ];
- dependencies = with python312Packages; [
- flask
- flask-restful
- yt-dlp
31
- podgen
32
- feedparser
33
- pygeocodio
34
- jobspy
+ # tbh idrk what the move is here but nix-ld fixes my issues with uv
+ nativeBuildInputs = [
+ uv # pythonEnvironment
35
];
36
}
37
);
0 commit comments