tvl-depot/advent-of-code/aoc2019.nix
William Carroll 456d358cd7 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.
2020-01-15 14:21:45 +00:00

8 lines
157 B
Nix

with import <nixpkgs> {};
with python35Packages;
buildPythonPackage {
name = "wpcarro";
src = ./day_5.py;
propagatedBuildInputs = [ pytest numpy ];
}