fix avahi

This commit is contained in:
mjallen18
2026-03-31 13:33:42 -05:00
parent 6ca55504f0
commit bd799661b9
59 changed files with 3758 additions and 3829 deletions

View File

@@ -1,14 +1,26 @@
{ python3Packages, fetchPypi, ... }:
{
lib,
namespace,
pkgs,
python3Packages,
...
}:
let
inherit (lib.trivial) importJSON;
inherit (lib.${namespace}) selectVariant mkAllSources;
python3Packages.buildPythonPackage rec {
versionSpec = importJSON ./version.json;
selected = selectVariant versionSpec null null;
sources = mkAllSources pkgs selected;
src-meta = selected.sources."python-steam";
version = selected.variables.version;
in
python3Packages.buildPythonPackage {
pname = "steam";
version = "1.4.4";
inherit version;
pyproject = false;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-K1vWkRwNSnMS9EG40WK52NR8i+u478bIhnOTsDI/pS4=";
};
src = sources."python-steam";
buildInputs = with python3Packages; [ setuptools ];