Skip to content

Instantly share code, notes, and snippets.

@drupol
Created October 13, 2023 12:18
Show Gist options
  • Save drupol/ee9fb1cfb74adfed27af5161dfdbf0f2 to your computer and use it in GitHub Desktop.
Save drupol/ee9fb1cfb74adfed27af5161dfdbf0f2 to your computer and use it in GitHub Desktop.
Python 3.11 with venv and oracledb
{ pkgs ? import <nixpkgs> {} }:
(pkgs.buildFHSUserEnv {
name = "python-3.11-pip";
targetPkgs = pkgs: (with pkgs; [
python311
python311Packages.pip
python311Packages.virtualenv
python311Packages.oracledb
]);
runScript = "bash";
}).env
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment