22 lines
364 B
Nix
22 lines
364 B
Nix
{ pkgs ? import <nixpkgs> {}, python ? pkgs.python39, ... }:
|
|
|
|
let
|
|
python-packages = ps: with ps; [
|
|
pip
|
|
setuptools
|
|
wheel
|
|
];
|
|
in
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs; [
|
|
(python.withPackages python-packages)
|
|
git
|
|
zlib
|
|
libgccjit
|
|
];
|
|
|
|
shellHook = ''
|
|
export LD_LIBRARY_PATH="${pkgs.zlib}/lib:${pkgs.libgccjit}/lib"
|
|
'';
|
|
}
|