Created
July 20, 2020 05:17
-
-
Save lambda-mike/41143bb50b531ff05b804b981b7aacf9 to your computer and use it in GitHub Desktop.
Reproducible builds Nix starter script for Python
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
#! /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