mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-10 03:19:25 +01:00
7 lines
156 B
Nix
7 lines
156 B
Nix
|
{ lib, python3Packages }:
|
||
|
with python3Packages;
|
||
|
buildPythonApplication {
|
||
|
name = "toggl-time-grouper";
|
||
|
src = ./.;
|
||
|
propagatedBuildInputs = [ pandas ];
|
||
|
}
|