python312Packages.elgato: refactor

Changed files
+6 -5
pkgs
development
python-modules
elgato
+6 -5
pkgs/development/python-modules/elgato/default.nix
···
orjson,
poetry-core,
pytest-asyncio,
+
pytest-cov-stub,
pytestCheckHook,
pythonOlder,
yarl,
···
buildPythonPackage rec {
pname = "elgato";
version = "5.1.2";
-
format = "pyproject";
+
pyproject = true;
disabled = pythonOlder "3.11";
···
# Upstream doesn't set a version for the pyproject.toml
substituteInPlace pyproject.toml \
--replace "0.0.0" "${version}" \
-
--replace "--cov" ""
'';
-
nativeBuildInputs = [ poetry-core ];
+
build-system = [ poetry-core ];
-
propagatedBuildInputs = [
+
dependencies = [
aiohttp
mashumaro
orjson
···
nativeCheckInputs = [
aresponses
pytest-asyncio
+
pytest-cov-stub
pytestCheckHook
];
···
description = "Python client for Elgato Key Lights";
homepage = "https://github.com/frenck/python-elgato";
changelog = "https://github.com/frenck/python-elgato/releases/tag/v${version}";
-
license = with licenses; [ mit ];
+
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}