Created
February 1, 2022 16:24
-
-
Save transhapHigsn/3fb0788462974a330e143517608e653f to your computer and use it in GitHub Desktop.
Python + poetry development environment using Nix
This file contains 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.poetry2nix.mkPoetryApplication { | |
projectDir = ./.; | |
python = pkgs.python38; | |
} |
This file contains 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.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