move all hacs modules to packages

This commit is contained in:
mjallen18
2025-07-18 10:07:22 -05:00
parent 442c24997d
commit 996e34d075
35 changed files with 606 additions and 605 deletions

View File

@@ -0,0 +1,16 @@
{ python3Packages, fetchFromGitHub, ... }:
python3Packages.buildPythonPackage rec {
pname = "pyoverseerr";
version = "0.1.40";
format = "setuptools";
src = fetchFromGitHub {
owner = "vaparr";
repo = pname;
rev = "master";
sha256 = "sha256-sWYe6EV/IO/tGGXcnKiebb47eidIj0xnM/aZUfdZXyY=";
};
buildInputs = with python3Packages; [ setuptools ];
doCheck = false; # no tests in the PyPI tarball
}