Created
October 13, 2023 12:18
-
-
Save drupol/ee9fb1cfb74adfed27af5161dfdbf0f2 to your computer and use it in GitHub Desktop.
Python 3.11 with venv and oracledb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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