flake setup and fragmented

This commit is contained in:
2024-12-06 13:34:53 -06:00
parent 85ee243f8d
commit 3f658af00f
11 changed files with 37 additions and 26 deletions

View File

@@ -0,0 +1,24 @@
{ python3Packages, sqlite, ... }:
let
pname = "tuh-activity-logger";
version = "1.0";
in
python3Packages.buildPythonApplication {
inherit pname version;
src = builtins.path {
path = ../../source/tuhmayto/.;
name = "${pname}-${version}";
};
build-system = [ python3Packages.setuptools ];
dependencies =
[
sqlite
]
++ builtins.attrValues {
inherit (python3Packages)
beautifulsoup4
requests
matplotlib
;
};
}