Created
January 22, 2017 20:33
-
-
Save RonnyPfannschmidt/9d535d37566cbeedf023508aaa9f644b to your computer and use it in GitHub Desktop.
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
#!/run/current-system/sw/bin/env nix-shell | |
#! nix-shell -f script_env.nix -i python3 -p python3 | |
import click | |
@click.command() | |
def test(): | |
print("hi") |
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
with import <nixpkgs> {}; | |
python3.withPackages (ps: [ps.click]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment