dot_testing/builds/pcomon.nix

14 lines
350 B
Nix
Raw Normal View History

2025-01-11 16:35:41 -06:00
{ python3Packages, system-sendmail, fetchgit }:
with python3Packages;
buildPythonApplication {
pname = "pcomon";
version = "1.0.0";
propagatedBuildInputs = [ requests system-sendmail ];
src = fetchgit {
url = "https://git.beepboop.systems/stupidcomputer/pcomon";
hash = "sha256-XxPb1WWq5YQz+UZ7P5dgInPweSD+52R2XVmoVrV0GMQ=";
};
}