feat(sun_hours): initial commit

This commit is contained in:
2021-12-14 00:06:43 +01:00
parent 8945430f27
commit d34a8161ba
3 changed files with 80 additions and 4 deletions

9
sun_hours/shell.nix Normal file
View File

@@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.python3Packages.astral
pkgs.python3Packages.matplotlib
pkgs.python3Packages.click
pkgs.python3Packages.timezonefinder
];
}