Merge pull request #300758 from fabaff/openrgb-python-bump

python312Packages.openrgb-python: 0.2.15 -> 0.3.0
This commit is contained in:
Fabian Affolter 2024-04-01 23:11:11 +02:00 committed by GitHub
commit 5b695dc30a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 3 deletions

View File

@ -2,20 +2,25 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, setuptools
}:
buildPythonPackage rec {
pname = "openrgb-python";
version = "0.2.15";
format = "setuptools";
version = "0.3.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-rTfpqMM+IUd8rMmw/r15sICLoPHL6KLaRrmUjWTfUkA=";
hash = "sha256-2eeb2XHYvBaHkHHs9KxZKDGXtcLaT28c/aLC9pxrRmM=";
};
build-system = [
setuptools
];
# Module has no tests
doCheck = false;