tvl-depot/universe/advent-of-code/aoc2019.nix
William Carroll fb9380ba26 Add 'universe/' from commit '8ad51b24dd8719840aac47134835ea25cfe1b0b8'
git-subtree-dir: universe
git-subtree-mainline: 15110e6de9
git-subtree-split: 8ad51b24dd
2020-01-29 14:29:25 +00:00

8 lines
157 B
Nix

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