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