Skip to content

Instantly share code, notes, and snippets.

@cab404
Created February 2, 2020 20:55
Show Gist options
  • Save cab404/38aa7567d20608622f19619664440bab to your computer and use it in GitHub Desktop.
Save cab404/38aa7567d20608622f19619664440bab to your computer and use it in GitHub Desktop.
Python shell with override example.
{ pkgs ? import <nixpkgs> {} }: let
pyversion = version: package: package.overrideAttrs (a: { inherit version; });
in
with pkgs; mkShell {
buildInputs = [
(python37.withPackages(a: with a; [
ipython pylint
(pyversion "12.3.0" python-telegram-bot)
]))
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment