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

8 lines
152 B
Nix
Raw Normal View History

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