dot_testing/builds/sssg.nix

14 lines
327 B
Nix
Raw Normal View History

2025-01-05 15:22:08 -06:00
{ python3Packages, fetchgit }:
with python3Packages;
buildPythonApplication {
2024-11-04 02:31:48 -06:00
pname = "sssg";
2025-01-05 15:22:08 -06:00
version = "1.1";
propagatedBuildInputs = [ markdown jinja2 watchdog ];
2024-11-04 02:31:48 -06:00
src = fetchgit {
url = "https://git.beepboop.systems/stupidcomputer/sssg";
2025-01-08 21:52:05 -06:00
hash = "sha256-17FRRgOGH/ZF6IrTprubiaZI/ihFSB4zu1spoxUZ2bA=";
2024-11-04 02:31:48 -06:00
};
}