diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-15T14·21+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-15T14·21+0000 |
commit | 456d358cd7b0701b0ca2b8571d61f255d3da1488 (patch) | |
tree | cb4aac65aa1c6600f6ef773ffd58cd8579bb5084 /advent-of-code/aoc2019.nix | |
parent | d480b6f08b8a6b32c58e5bbdf2f193432c50fb97 (diff) |
Upload my 2019 Advent of Code attempts
Well, unexpectedly (perhaps naively so), I only made it to Day 7. I created these before I stumbled upon the idea of the mono-repository; otherwise, I like to think I would have more granular commits introducing this work.
Diffstat (limited to 'advent-of-code/aoc2019.nix')
-rw-r--r-- | advent-of-code/aoc2019.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/advent-of-code/aoc2019.nix b/advent-of-code/aoc2019.nix new file mode 100644 index 000000000000..10e6c559a9b4 --- /dev/null +++ b/advent-of-code/aoc2019.nix @@ -0,0 +1,8 @@ +with import <nixpkgs> {}; +with python35Packages; + +buildPythonPackage { + name = "wpcarro"; + src = ./day_5.py; + propagatedBuildInputs = [ pytest numpy ]; +} |