Skip to content

Instantly share code, notes, and snippets.

@lambda-mike
Created July 20, 2020 05:17
Show Gist options
  • Save lambda-mike/41143bb50b531ff05b804b981b7aacf9 to your computer and use it in GitHub Desktop.
Save lambda-mike/41143bb50b531ff05b804b981b7aacf9 to your computer and use it in GitHub Desktop.
Reproducible builds Nix starter script for Python
#! /usr/bin/env nix-shell
#! nix-shell --pure -i python -p "python38.withPackages (ps: [ ps.django ])"
#! nix-shell -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/82b5f87fcc710a99c47c5ffe441589807a8202af.tar.gz
import django
print(django)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment