Skip to content

Commit b925fdc

Browse files
uv and nix-ld
1 parent a4de285 commit b925fdc

File tree

1 file changed

+13
-14
lines changed

1 file changed

+13
-14
lines changed

flake.nix

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,24 @@
1313
devShell = forAllSystems (system:
1414
let
1515
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+
]);
1626
in
1727
with pkgs;
1828
mkShell {
1929
name = "dev shell";
2030

21-
nativeBuildInputs = [ uv ];
22-
23-
build-system = with python3Packages; [
24-
hatchling
25-
];
26-
27-
dependencies = with python312Packages; [
28-
flask
29-
flask-restful
30-
yt-dlp
31-
podgen
32-
feedparser
33-
pygeocodio
34-
jobspy
31+
# tbh idrk what the move is here but nix-ld fixes my issues with uv
32+
nativeBuildInputs = [
33+
uv # pythonEnvironment
3534
];
3635
}
3736
);

0 commit comments

Comments
 (0)