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

7 lines
156 B
Nix
Raw Normal View History

2023-10-04 01:59:47 +02:00
{ lib, python3Packages }:
with python3Packages;
buildPythonApplication {
name = "toggl-time-grouper";
src = ./.;
propagatedBuildInputs = [ pandas ];
}