Files
nixpkgs/pkgs/development/python-modules/openrgb-python/default.nix
Fabian Affolter 9b1a991212 python313Packages.openrgb-python: modernize
Removed restriction for Python version older than 3.7.
2025-10-17 18:50:29 +02:00

33 lines
689 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "openrgb-python";
version = "0.3.6";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-86jy8hoOgQocdCeapjaRFO9PKx/TW9kcN16UKSWNVps=";
};
build-system = [ setuptools ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "openrgb" ];
meta = with lib; {
description = "Module for the OpenRGB SDK";
homepage = "https://openrgb-python.readthedocs.io/";
changelog = "https://github.com/jath03/openrgb-python/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
};
}