about summary refs log tree commit diff
path: root/universe/advent-of-code/aoc2019.nix
blob: 10e6c559a9b46e54ae771ffaac7d89dba15878a2 (plain) (blame)
1
2
3
4
5
6
7
8
with import <nixpkgs> {};
with python35Packages;

buildPythonPackage {
  name = "wpcarro";
  src = ./day_5.py;
  propagatedBuildInputs = [ pytest numpy ];
}