This commit is contained in:
mjallen18
2026-03-26 11:42:16 -05:00
parent 85ea3039f4
commit aed841d32e
15 changed files with 39 additions and 60 deletions

View File

@@ -1,5 +1,5 @@
{ python3Packages, fetchFromGitHub, ... }:
python3Packages.buildPythonPackage rec {
{ fetchFromGitHub, home-assistant, ... }:
home-assistant.python.pkgs.buildPythonPackage rec {
pname = "pyoverseerr";
version = "0.1.40";
format = "setuptools";
@@ -11,6 +11,6 @@ python3Packages.buildPythonPackage rec {
sha256 = "sha256-sWYe6EV/IO/tGGXcnKiebb47eidIj0xnM/aZUfdZXyY=";
};
buildInputs = with python3Packages; [ setuptools ];
build-system = [ home-assistant.python.pkgs.setuptools ];
doCheck = false; # no tests in the PyPI tarball
}