dotfiles/home-manager/pkgs/toggl-time-grouper/package.nix

8 lines
152 B
Nix

{ python3Packages }:
with python3Packages;
buildPythonApplication {
name = "toggl-time-grouper";
src = ./.;
propagatedBuildInputs = [ pandas ];
}