python313Packages.flux-led: 1.1.3 -> 1.1.4

Changelog: https://github.com/Danielhiversen/flux_led/releases/tag/1.1.4
This commit is contained in:
Fabian Affolter
2025-03-15 09:28:43 +01:00
parent deecf38ca3
commit dc5ddbfb69
@@ -5,22 +5,23 @@
fetchFromGitHub,
webcolors,
pythonOlder,
pytest-asyncio,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "flux-led";
version = "1.1.3";
version = "1.1.4";
pyproject = true;
disabled = pythonOlder "3.8";
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "Danielhiversen";
repo = "flux_led";
tag = version;
hash = "sha256-lFOxf9+O1APreIL/wQTZ+zSMx/MxPTRQrFWgw324myY=";
hash = "sha256-VYhXW3aqjDN7J+OkhYAOC0hGG5RkuFL0I7d6jbGKBvY=";
};
postPatch = ''
@@ -35,9 +36,10 @@ buildPythonPackage rec {
webcolors
];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "tests.py" ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
pythonImportsCheck = [ "flux_led" ];