Skip to content

Instantly share code, notes, and snippets.

@transhapHigsn
Created February 1, 2022 16:24
Show Gist options
  • Save transhapHigsn/3fb0788462974a330e143517608e653f to your computer and use it in GitHub Desktop.
Save transhapHigsn/3fb0788462974a330e143517608e653f to your computer and use it in GitHub Desktop.
Python + poetry development environment using Nix
{ pkgs ? import <nixpkgs> { } }:
pkgs.poetry2nix.mkPoetryApplication {
projectDir = ./.;
python = pkgs.python38;
}
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.python38
pkgs.poetry
pkgs.curl
pkgs.pkg-config
pkgs.libxslt
pkgs.libxml2
pkgs.libtool
pkgs.xmlsec
];
PYTHONBREAKPOINT="ipdb.set_trace";
DJANGO_SETTINGS_MODULE="module.settings.local";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment