dot_testing/builds/sssg.nix
2025-01-08 21:52:05 -06:00

14 lines
327 B
Nix

{ python3Packages, fetchgit }:
with python3Packages;
buildPythonApplication {
pname = "sssg";
version = "1.1";
propagatedBuildInputs = [ markdown jinja2 watchdog ];
src = fetchgit {
url = "https://git.beepboop.systems/stupidcomputer/sssg";
hash = "sha256-17FRRgOGH/ZF6IrTprubiaZI/ihFSB4zu1spoxUZ2bA=";
};
}