python312Packages.openrgb-python: refactor

This commit is contained in:
Fabian Affolter 2024-04-01 20:39:28 +02:00
parent f310b9feab
commit e9bcd7ca78
1 changed files with 6 additions and 1 deletions

View File

@ -2,12 +2,13 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "openrgb-python";
version = "0.3.0";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
@ -16,6 +17,10 @@ buildPythonPackage rec {
hash = "sha256-2eeb2XHYvBaHkHHs9KxZKDGXtcLaT28c/aLC9pxrRmM=";
};
build-system = [
setuptools
];
# Module has no tests
doCheck = false;