[pip] Add old flake

This commit is contained in:
Tibo De Peuter 2024-02-22 22:03:44 +01:00
parent 7e7e7797a1
commit f7fe12b457
3 changed files with 97 additions and 0 deletions

11
python/pip/pip-shell.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
(pkgs.buildFHSUserEnv {
name = "pipzone";
targetPkgs = pkgs: (with pkgs; [
python39
python39Packages.pip
python39Packages.virtualenv
]);
runScript = "bash";
}).env